Skip to content

Commit

Permalink
🔖 Bump version to 6.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Mar 31, 2022
1 parent 1bb67ae commit 805b466
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
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.10.0'
s.version = '6.11.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.
Expand Down
4 changes: 2 additions & 2 deletions ACKategories.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 6.10.0;
MARKETING_VERSION = 6.11.0;
ONLY_ACTIVE_ARCH = YES;
SWIFT_VERSION = 5.0;
};
Expand Down Expand Up @@ -1321,7 +1321,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 6.10.0;
MARKETING_VERSION = 6.11.0;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_VERSION = 5.0;
};
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
```

## Next

## 6.11.0

- Create `PublisherExtensions.swift` and add `weakAssign(on:to:)`. ([#116](https://github.com/AckeeCZ/ACKategories/pull/116), kudos to @vendulasvastal)

- Add option to implement custom push transition ([#115](https://github.com/AckeeCZ/ACKategories/pull/115), 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.10.0"
pod "ACKategories", "~> 6.11.0"
```

### Carthage

You can also use [Carthage](https://github.com/Carthage/Carthage). Specify this repo in your Cartfile:

```
github "AckeeCZ/ACKategories" ~> 6.10.0
github "AckeeCZ/ACKategories" ~> 6.11.0
```

### 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.10.0")),
.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.11.0")),
```


Expand Down

0 comments on commit 805b466

Please sign in to comment.