diff --git a/ACKategories-iOS/Supporting files/Info.plist b/ACKategories-iOS/Supporting files/Info.plist
index 9bcb2444..c0701c6d 100644
--- a/ACKategories-iOS/Supporting files/Info.plist
+++ b/ACKategories-iOS/Supporting files/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.0
+ $(MARKETING_VERSION)
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
diff --git a/ACKategories.podspec b/ACKategories.podspec
index e0076d97..983dad54 100644
--- a/ACKategories.podspec
+++ b/ACKategories.podspec
@@ -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.
diff --git a/ACKategories.xcodeproj/project.pbxproj b/ACKategories.xcodeproj/project.pbxproj
index 7ff496bb..274f18fe 100644
--- a/ACKategories.xcodeproj/project.pbxproj
+++ b/ACKategories.xcodeproj/project.pbxproj
@@ -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;
};
@@ -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;
};
@@ -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;
@@ -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;
@@ -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;
@@ -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";
diff --git a/ACKategoriesCore/Supporting files/Info.plist b/ACKategoriesCore/Supporting files/Info.plist
index 9bcb2444..c0701c6d 100644
--- a/ACKategoriesCore/Supporting files/Info.plist
+++ b/ACKategoriesCore/Supporting files/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.0
+ $(MARKETING_VERSION)
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d807fac..848d6e53 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/README.md b/README.md
index 4967d9a9..7d9ea326 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.3"
+pod "ACKategories", "~> 6.10.0"
```
### Carthage
@@ -24,7 +24,7 @@ pod "ACKategories", "~> 6.9.3"
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
@@ -32,7 +32,7 @@ github "AckeeCZ/ACKategories" ~> 6.9.3
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")),
```