Skip to content

Commit

Permalink
🔖 Bump version to 6.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Mar 15, 2022
1 parent 7dc4c0c commit 6e616a6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ACKategories-iOS/Supporting files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
Expand Down
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.3'
s.version = '6.10.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
6 changes: 6 additions & 0 deletions ACKategories.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1282,6 +1282,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 6.10.0;
ONLY_ACTIVE_ARCH = YES;
SWIFT_VERSION = 5.0;
};
Expand Down Expand Up @@ -1316,6 +1317,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MARKETING_VERSION = 6.10.0;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_VERSION = 5.0;
};
Expand Down Expand Up @@ -1388,6 +1390,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.9;
MARKETING_VERSION = $MARKETING_VERSION;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1463,6 +1466,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.9;
MARKETING_VERSION = $MARKETING_VERSION;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = cz.ackee.enterprise.ACKategoriesCore;
Expand Down Expand Up @@ -1681,6 +1685,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = $MARKETING_VERSION;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1761,6 +1766,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = $MARKETING_VERSION;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "cz.ackee.enterprise.ACKategories-iOS";
Expand Down
2 changes: 1 addition & 1 deletion ACKategoriesCore/Supporting files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
</dict>
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.10.0

- Add `prototypeSupplementaryView(ofKind:type)` to `UICollectionView` extensions ([#114](https://github.com/AckeeCZ/ACKategories/pull/114), kudos to @olejnjak)

## 6.9.3
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.3"
pod "ACKategories", "~> 6.10.0"
```

### Carthage

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

```
github "AckeeCZ/ACKategories" ~> 6.9.3
github "AckeeCZ/ACKategories" ~> 6.10.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.9.3")),
.package(url: "https://github.com/AckeeCZ/ACKategories.git", .upToNextMajor(from: "6.10.0")),
```


Expand Down

0 comments on commit 6e616a6

Please sign in to comment.