diff --git a/ACKategories.podspec b/ACKategories.podspec index 75a9701a..da8478e0 100644 --- a/ACKategories.podspec +++ b/ACKategories.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ACKategories' - s.version = '6.11.0' + s.version = '6.12.0' s.summary = 'A bunch of useful tools, cocoa subclasses and extensions' s.description = <<-DESC Tools, cocoa subclasses and extensions we love to use at Ackee. diff --git a/ACKategories.xcodeproj/project.pbxproj b/ACKategories.xcodeproj/project.pbxproj index 3246a9c2..289a1fba 100644 --- a/ACKategories.xcodeproj/project.pbxproj +++ b/ACKategories.xcodeproj/project.pbxproj @@ -1288,7 +1288,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 6.11.0; + MARKETING_VERSION = 6.12.0; ONLY_ACTIVE_ARCH = YES; SWIFT_VERSION = 5.0; }; @@ -1323,7 +1323,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 6.11.0; + MARKETING_VERSION = 6.12.0; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_VERSION = 5.0; }; diff --git a/CHANGELOG.md b/CHANGELOG.md index 11c1b2e0..50301759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ ``` ## Next + +## 6.12.0 - Binary is built using Xcode 13.4 ([#125](https://github.com/AckeeCZ/ACKategories/pull/125), kudos to @olejnjak) - Add `projectedValue` to `UserDefault` property wrapper with `CurrentValueSubject` ([#124](https://github.com/AckeeCZ/ACKategories/pull/124), kudos to @olejnjak) - Fix navigation stack when managed by flow coordinators in non-linear hierarchy ([#123](https://github.com/AckeeCZ/ACKategories/pull/123), kudos to @olejnjak) diff --git a/README.md b/README.md index 1549defd..205fca3b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ A bunch of tools, cocoa subclasses and extensions we created and use at Ackee. ACKategories is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby -pod "ACKategories", "~> 6.11.0" +pod "ACKategories", "~> 6.12.0" ``` ### Carthage @@ -24,7 +24,7 @@ pod "ACKategories", "~> 6.11.0" You can also use [Carthage](https://github.com/Carthage/Carthage). Specify this repo in your Cartfile: ``` -github "AckeeCZ/ACKategories" ~> 6.11.0 +github "AckeeCZ/ACKategories" ~> 6.12.0 ``` ### SPM @@ -32,7 +32,7 @@ github "AckeeCZ/ACKategories" ~> 6.11.0 Or you can use [SPM](https://github.com/apple/swift-package-manager). Add this to your `Package.swift`: ```swift -.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.11.0")), +.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.12.0")), ```