From 6e616a6c4d42b1c9bdbe93308f6438edba96cf9e Mon Sep 17 00:00:00 2001 From: Jakub Olejnik Date: Tue, 15 Mar 2022 16:17:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=206.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ACKategories-iOS/Supporting files/Info.plist | 2 +- ACKategories.podspec | 2 +- ACKategories.xcodeproj/project.pbxproj | 6 ++++++ ACKategoriesCore/Supporting files/Info.plist | 2 +- CHANGELOG.md | 2 ++ README.md | 6 +++--- 6 files changed, 14 insertions(+), 6 deletions(-) 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")), ```