From ae3a965164005b07f81d6aa066520d7ad14ea54e Mon Sep 17 00:00:00 2001 From: "aleksandr.orlov" Date: Thu, 27 Jan 2022 18:39:57 +0800 Subject: [PATCH] Updated version to '2.5.2'. --- AnyFormatKit.podspec | 2 +- AnyFormatKit.xcodeproj/project.pbxproj | 4 ++-- README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/AnyFormatKit.podspec b/AnyFormatKit.podspec index a4c1c0a..29466a3 100644 --- a/AnyFormatKit.podspec +++ b/AnyFormatKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'AnyFormatKit' - s.version = '2.5.1' + s.version = '2.5.2' s.summary = 'Simple text formatting in Swift.' s.description = <<-DESC diff --git a/AnyFormatKit.xcodeproj/project.pbxproj b/AnyFormatKit.xcodeproj/project.pbxproj index f0b76aa..d8315be 100644 --- a/AnyFormatKit.xcodeproj/project.pbxproj +++ b/AnyFormatKit.xcodeproj/project.pbxproj @@ -1235,7 +1235,7 @@ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MARKETING_VERSION = 2.5.1; + MARKETING_VERSION = 2.5.2; PRODUCT_BUNDLE_IDENTIFIER = OO.AnyFormatKit; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -1258,7 +1258,7 @@ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MARKETING_VERSION = 2.5.1; + MARKETING_VERSION = 2.5.2; PRODUCT_BUNDLE_IDENTIFIER = OO.AnyFormatKit; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; diff --git a/README.md b/README.md index c37bc21..eb230b7 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ AnyFormatKit is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: ```ruby -pod 'AnyFormatKit', '~> 2.5.1' +pod 'AnyFormatKit', '~> 2.5.2' ``` Then, run the following command: @@ -76,7 +76,7 @@ Once you have your Swift package set up, than simply add AnyFormatKit to the `de ```swift dependencies: [ - .package(url: "https://github.com/luximetr/AnyFormatKit.git", .upToNextMajor(from: "2.5.1")) + .package(url: "https://github.com/luximetr/AnyFormatKit.git", .upToNextMajor(from: "2.5.2")) ] ```