From fe78abea1b0dced6443c74358b4ffbd23cc24cdf Mon Sep 17 00:00:00 2001 From: Jakub Olejnik Date: Fri, 7 Oct 2022 20:40:43 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=206.12.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ACKategories.podspec | 2 +- ACKategories.xcodeproj/project.pbxproj | 4 ++-- CHANGELOG.md | 2 ++ README.md | 6 +++--- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ACKategories.podspec b/ACKategories.podspec index 16daf35d..a0a9db87 100644 --- a/ACKategories.podspec +++ b/ACKategories.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ACKategories' - s.version = '6.12.1' + s.version = '6.12.2' 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 f0ad2e9f..919f2a14 100644 --- a/ACKategories.xcodeproj/project.pbxproj +++ b/ACKategories.xcodeproj/project.pbxproj @@ -1284,7 +1284,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 6.12.1; + MARKETING_VERSION = 6.12.2; ONLY_ACTIVE_ARCH = YES; SWIFT_VERSION = 5.0; }; @@ -1320,7 +1320,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 6.12.1; + MARKETING_VERSION = 6.12.2; SWIFT_COMPILATION_MODE = wholemodule; SWIFT_VERSION = 5.0; }; diff --git a/CHANGELOG.md b/CHANGELOG.md index 955ba15e..5d319405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ ``` ## Next + +## 6.12.2 - Specify Obj-C name for TagListView ([#127](https://github.com/AckeeCZ/ACKategories/pull/127), kudos to @olejnjak) ## 6.12.1 diff --git a/README.md b/README.md index 7ee3b8e6..d6d695d1 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.12.1" +pod "ACKategories", "~> 6.12.2" ``` ### Carthage @@ -24,7 +24,7 @@ pod "ACKategories", "~> 6.12.1" You can also use [Carthage](https://github.com/Carthage/Carthage). Specify this repo in your Cartfile: ``` -github "AckeeCZ/ACKategories" ~> 6.12.1 +github "AckeeCZ/ACKategories" ~> 6.12.2 ``` ### SPM @@ -32,7 +32,7 @@ github "AckeeCZ/ACKategories" ~> 6.12.1 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.12.1")), +.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.12.2")), ```