From a0643a6fdb48b617ecf66d65004ba7446604e3f1 Mon Sep 17 00:00:00 2001 From: Jakub Olejnik Date: Wed, 15 Dec 2021 12:21:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=206.9.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/xcode-version | 2 +- ACKategories.podspec | 2 +- CHANGELOG.md | 2 ++ README.md | 6 +++--- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/xcode-version b/.github/xcode-version index 7c7996d6..40922907 100644 --- a/.github/xcode-version +++ b/.github/xcode-version @@ -1 +1 @@ -13.1 \ No newline at end of file +13.2 \ No newline at end of file diff --git a/ACKategories.podspec b/ACKategories.podspec index 609ebc73..1e4fdd6d 100644 --- a/ACKategories.podspec +++ b/ACKategories.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ACKategories' - s.version = '6.9.0' + s.version = '6.9.1' 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 e27cafd8..83fc4fb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ ## Next +## 6.9.1 + - Add `Int` inits that safely convert given floating value (`Double`, `Float`, `CGFloat`) to `Int` by checking for `NaN` and `infinity` ([#110](https://github.com/AckeeCZ/ACKategories/pull/110), kudos to @olejnjak) - `SelfSizingTableHeaderFooterView` - fix crash when device orientation has changed ([#111](https://github.com/AckeeCZ/ACKategories/pull/111), kudos to @leinhauplk) diff --git a/README.md b/README.md index 63ddb7fe..83f0d14f 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.9.0" +pod "ACKategories", "~> 6.9.1" ``` ### Carthage @@ -24,7 +24,7 @@ pod "ACKategories", "~> 6.9.0" You can also use [Carthage](https://github.com/Carthage/Carthage). Specify this repo in your Cartfile: ``` -github "AckeeCZ/ACKategories" ~> 6.9.0 +github "AckeeCZ/ACKategories" ~> 6.9.1 ``` ### SPM @@ -32,7 +32,7 @@ github "AckeeCZ/ACKategories" ~> 6.9.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.9.0")), +.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.9.1")), ```