Skip to content

Commit

Permalink
Release 1.0.3 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazrafi authored Nov 28, 2020
1 parent 4ab13b3 commit 4e2a3bc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DictionaryCoder.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "DictionaryCoder"
spec.version = "1.0.2"
spec.version = "1.0.3"
spec.summary = "Swift Encoder and Decoder for dictionaries"

spec.homepage = "https://github.com/almazrafi/DictionaryCoder"
Expand Down
16 changes: 8 additions & 8 deletions DictionaryCoder.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SDKROOT = watchos;
Expand Down Expand Up @@ -1013,7 +1013,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SDKROOT = watchos;
Expand Down Expand Up @@ -1164,7 +1164,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1192,7 +1192,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1263,7 +1263,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SDKROOT = macosx;
Expand Down Expand Up @@ -1292,7 +1292,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.12;
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SDKROOT = macosx;
Expand Down Expand Up @@ -1364,7 +1364,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SDKROOT = appletvos;
Expand Down Expand Up @@ -1393,7 +1393,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.0.2;
MARKETING_VERSION = 1.0.3;
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
SDKROOT = appletvos;
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ $ brew install carthage

To integrate DictionaryCoder into your Xcode project using Carthage, specify it in your `Cartfile`:
```ogdl
github "almazrafi/DictionaryCoder" ~> 1.0.2
github "almazrafi/DictionaryCoder" ~> 1.0.3
```

Finally run `carthage update` to build the framework and drag the built `DictionaryCoder.framework` into your Xcode project.
Expand All @@ -72,7 +72,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is a tool for ma
To integrate DictionaryCoder 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/DictionaryCoder.git", from: "1.0.2")
.package(url: "https://github.com/almazrafi/DictionaryCoder.git", from: "1.0.3")
```
and then specify `"DictionaryCoder"` as a dependency of the Target in which you wish to use DictionaryCoder.

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

0 comments on commit 4e2a3bc

Please sign in to comment.