version bump

This commit is contained in:
John Estropia
2020-09-19 14:44:55 +09:00
parent 228e4e8e1a
commit 3b6f226389
3 changed files with 12 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "CoreStore"
s.version = "7.2.0"
s.swift_version = "5.2"
s.version = "73.0"
s.swift_version = "5.3"
s.license = "MIT"
s.homepage = "https://github.com/JohnEstropia/CoreStore"
s.documentation_url = "https://JohnEstropia.github.io/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.2.0;
MARKETING_VERSION = 7.3.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.2.0;
MARKETING_VERSION = 7.3.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.2.0;
MARKETING_VERSION = 7.3.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.2.0;
MARKETING_VERSION = 7.3.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3587,6 +3587,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.3.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3615,6 +3616,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.3.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3680,6 +3682,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.3.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
@@ -3707,6 +3710,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.3.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,

View File

@@ -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.2.0
github "JohnEstropia/CoreStore" >= 7.3.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.2.0"))
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "7.3.0"))
]
```
Declare `import CoreStore` in your swift file to use the library.