From bc61ddacafd2497c3d990621847ce9b03dbf7276 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=CC=81s=CC=8C=20Hromadni=CC=81k?= Date: Mon, 7 Dec 2020 14:54:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=206.7.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ACKategories.podspec | 2 +- CHANGELOG.md | 2 ++ README.md | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ACKategories.podspec b/ACKategories.podspec index 3a5e4924..8978b9bc 100644 --- a/ACKategories.podspec +++ b/ACKategories.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ACKategories' - s.version = '6.7.2' + s.version = '6.7.3' 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/CHANGELOG.md b/CHANGELOG.md index 8c5d77a7..e8d1fce1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ ## Next +## 6.7.3 + ### Fixed - Check if `navigationController != rootViewController` before running navigation delegate method ([#100](https://github.com/AckeeCZ/ACKategories/pull/100), kudos to @lukashromadnik) diff --git a/README.md b/README.md index 7a36c29e..d6fe6370 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.7.2" +pod "ACKategories", "~> 6.7.3" ``` ### Carthage @@ -24,7 +24,7 @@ pod "ACKategories", "~> 6.7.2" You can also use [Carthage](https://github.com/Carthage/Carthage). Specify this repo in your Cartfile: ``` -github "AckeeCZ/ACKategories" ~> 6.7.2 +github "AckeeCZ/ACKategories" ~> 6.7.3 ``` ### SPM @@ -32,7 +32,7 @@ github "AckeeCZ/ACKategories" ~> 6.7.2 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.7.2")), +.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.7.3")), ```