Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.2.0"
spec.version = "1.3.0"
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 @@ -991,7 +991,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1020,7 +1020,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1186,7 +1186,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1215,7 +1215,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1281,7 +1281,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.5;
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1311,7 +1311,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.5;
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1377,7 +1377,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
Expand Down Expand Up @@ -1407,7 +1407,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.0;
MARKETING_VERSION = 1.3.0;
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = com.almazrafi.DictionaryCoder;
PRODUCT_NAME = DictionaryCoder;
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.2.0
github "almazrafi/DictionaryCoder" ~> 1.3.0
```

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.2.0")
.package(url: "https://github.com/almazrafi/DictionaryCoder.git", from: "1.3.0")
```
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.2.0")
.package(url: "https://github.com/almazrafi/DictionaryCoder.git", from: "1.3.0")
],
targets: [
.target(name: "MyPackage", dependencies: ["DictionaryCoder"])
Expand Down