Skip to content

Commit

Permalink
Release 1.1.0 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazrafi authored Aug 25, 2022
1 parent de053f6 commit 0e555bf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion KeyValueContainer.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "KeyValueContainer"
spec.version = "1.0.1"
spec.version = "1.1.0"
spec.summary = "Type-safe containers for key-value storage"

spec.homepage = "https://github.com/almazrafi/KeyValueContainer"
Expand Down
16 changes: 8 additions & 8 deletions KeyValueContainer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SDKROOT = watchos;
Expand Down Expand Up @@ -1096,7 +1096,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SDKROOT = watchos;
Expand Down Expand Up @@ -1249,7 +1249,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1279,7 +1279,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1353,7 +1353,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SDKROOT = macosx;
Expand Down Expand Up @@ -1384,7 +1384,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SDKROOT = macosx;
Expand Down Expand Up @@ -1457,7 +1457,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SDKROOT = appletvos;
Expand Down Expand Up @@ -1488,7 +1488,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.KeyValueContainer;
PRODUCT_NAME = KeyValueContainer;
SDKROOT = appletvos;
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ $ brew install carthage

To integrate KeyValueContainer into your Xcode project using Carthage, specify it in your `Cartfile`:
```ogdl
github "almazrafi/KeyValueContainer" ~> 1.0.1
github "almazrafi/KeyValueContainer" ~> 1.1.0
```

Finally run `carthage update` to build the framework and drag the built `KeyValueContainer.framework` into your Xcode project.
Expand All @@ -89,7 +89,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is a tool for ma
To integrate KeyValueContainer into your Xcode project using Swift Package Manager,
add the following as a dependency to your `Package.swift`:
```swift
.package(url: "https://github.com/almazrafi/KeyValueContainer.git", from: "1.0.1")
.package(url: "https://github.com/almazrafi/KeyValueContainer.git", from: "1.1.0")
```
and then specify `"KeyValueContainer"` as a dependency of the Target in which you wish to use KeyValueContainer.

Expand All @@ -104,7 +104,7 @@ let package = Package(
.library(name: "MyPackage", targets: ["MyPackage"])
],
dependencies: [
.package(url: "https://github.com/almazrafi/KeyValueContainer.git", from: "1.0.1")
.package(url: "https://github.com/almazrafi/KeyValueContainer.git", from: "1.1.0")
],
targets: [
.target(name: "MyPackage", dependencies: ["KeyValueContainer"])
Expand Down

0 comments on commit 0e555bf

Please sign in to comment.