From e4a1f787728a7afa77d3a883ad37b3958dc5f87d Mon Sep 17 00:00:00 2001 From: Almaz Ibragimov Date: Mon, 29 Dec 2025 15:08:00 +0300 Subject: [PATCH] Release 1.3.0 --- DictionaryCoder.podspec | 2 +- DictionaryCoder.xcodeproj/project.pbxproj | 16 ++++++++-------- README.md | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/DictionaryCoder.podspec b/DictionaryCoder.podspec index 1183883..7f123b8 100644 --- a/DictionaryCoder.podspec +++ b/DictionaryCoder.podspec @@ -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" diff --git a/DictionaryCoder.xcodeproj/project.pbxproj b/DictionaryCoder.xcodeproj/project.pbxproj index 3164ef1..e900ea9 100644 --- a/DictionaryCoder.xcodeproj/project.pbxproj +++ b/DictionaryCoder.xcodeproj/project.pbxproj @@ -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; @@ -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; @@ -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; @@ -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; @@ -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; @@ -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; @@ -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; @@ -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; diff --git a/README.md b/README.md index 2bc815d..17292c8 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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"])