version bump

This commit is contained in:
John Estropia
2020-06-20 13:16:14 +09:00
parent 56f873ccb3
commit 4ac7df7364
3 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CoreStore"
s.version = "7.1.0"
s.version = "7.2.0"
s.swift_version = "5.2"
s.license = "MIT"
s.homepage = "https://github.com/JohnEstropia/CoreStore"

View File

@@ -3413,7 +3413,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 7.1.0;
MARKETING_VERSION = 7.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3436,7 +3436,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 7.1.0;
MARKETING_VERSION = 7.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3496,7 +3496,7 @@
GCC_NO_COMMON_BLOCKS = YES;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 7.1.0;
MARKETING_VERSION = 7.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3522,7 +3522,7 @@
GCC_NO_COMMON_BLOCKS = YES;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 7.1.0;
MARKETING_VERSION = 7.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,

View File

@@ -2073,7 +2073,7 @@ Once the version lock is set, any changes in the properties or to the model will
### Install with CocoaPods
In your `Podfile`, add
```
pod 'CoreStore', '~> 7.1'
pod 'CoreStore', '~> 7.2'
```
and run
```
@@ -2084,7 +2084,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
### Install with Carthage
In your `Cartfile`, add
```
github "JohnEstropia/CoreStore" >= 7.1.0
github "JohnEstropia/CoreStore" >= 7.2.0
```
and run
```
@@ -2095,7 +2095,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
#### Install with Swift Package Manager:
```swift
dependencies: [
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "7.1.0"))
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "7.2.0"))
]
```
Declare `import CoreStore` in your swift file to use the library.