Skip to content

Commit

Permalink
bump CoreStore and Swift compiler versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnEstropia committed Oct 3, 2023
1 parent 0ee4dc8 commit 9045fbb
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CoreStore.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "CoreStore"
s.version = "9.1.0"
s.swift_version = "5.7"
s.version = "9.2.0"
s.swift_version = "5.9"
s.license = "MIT"
s.homepage = "https://github.com/JohnEstropia/CoreStore"
s.documentation_url = "https://JohnEstropia.github.io/CoreStore"
Expand Down
16 changes: 8 additions & 8 deletions CoreStore.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3112,7 +3112,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand All @@ -3136,7 +3136,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand Down Expand Up @@ -3194,7 +3194,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 = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand All @@ -3221,7 +3221,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 = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand Down Expand Up @@ -3327,7 +3327,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand Down Expand Up @@ -3358,7 +3358,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand Down Expand Up @@ -3424,7 +3424,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 = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand Down Expand Up @@ -3453,7 +3453,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 = 9.1.0;
MARKETING_VERSION = 9.2.0;
OTHER_LDFLAGS = (
"-weak_framework",
Combine,
Expand Down
2 changes: 1 addition & 1 deletion CoreStoreTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>9.1.0</string>
<string>9.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.7
// swift-tools-version:5.9
//
// Package.swift
// CoreStore
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2460,7 +2460,7 @@ This installs CoreStore as a framework. Declare `import CoreStore` in your swift
### Install with Carthage
In your `Cartfile`, add
```
github "JohnEstropia/CoreStore" >= 9.1.0
github "JohnEstropia/CoreStore" >= 9.2.0
```
and run
```
Expand All @@ -2471,7 +2471,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: "9.1.0"))
.package(url: "https://github.com/JohnEstropia/CoreStore.git", from: "9.2.0"))
]
```
Declare `import CoreStore` in your swift file to use the library.
Expand Down

0 comments on commit 9045fbb

Please sign in to comment.