Skip to content

Commit

Permalink
🔖 Bump version to 6.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Dec 15, 2021
1 parent 8b722f8 commit a0643a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/xcode-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13.1
13.2
2 changes: 1 addition & 1 deletion ACKategories.podspec
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ 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

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

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")),
```


Expand Down

0 comments on commit a0643a6

Please sign in to comment.