From 889a1ecacd73ccc189c5cb29288048f186c44ed9 Mon Sep 17 00:00:00 2001 From: Tim Gymnich Date: Sun, 15 Nov 2020 14:11:20 +0100 Subject: [PATCH] Bumped version --- BigInt.podspec | 2 +- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- version.xcconfig | 4 ++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/BigInt.podspec b/BigInt.podspec index 758a537..9f0bfd3 100644 --- a/BigInt.podspec +++ b/BigInt.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = 'BigInt' - spec.version = '5.2.0' + spec.version = '5.2.1' spec.ios.deployment_target = "8.0" spec.osx.deployment_target = "10.9" spec.tvos.deployment_target = "9.0" diff --git a/CHANGELOG.md b/CHANGELOG.md index bd418d4..c401a4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 5.2.1 (2020-11-15) + +This release contains the following changes: + +- Added a temporary fix for [SR-13491](https://bugs.swift.org/browse/SR-13491) + # 5.2.0 (2020-08-24) This release contains the following changes: diff --git a/README.md b/README.md index 0eb0238..ad77cec 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ The last version with support for Swift 2 was BigInt 1.3.0.) | 3.x | 2.1.0 | | 4.0 | 3.1.0 | | 4.2 | 4.0.0 | -| 5.0 | 5.2.0 | +| 5.x | 5.2.1 | BigInt deploys to macOS 10.10, iOS 9, watchOS 2 and tvOS 9. It has been tested on the latest OS releases only---however, as the module uses very few platform-provided APIs, @@ -121,13 +121,13 @@ Setup instructions: Add this to the dependency section of your `Package.swift` manifest: ```Swift - .package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.0") + .package(url: "https://github.com/attaswift/BigInt.git", from: "5.2.1") ``` - **CocoaPods:** Put this in your `Podfile`: ```Ruby - pod 'BigInt', '~> 5.0' + pod 'BigInt', '~> 5.2' ``` - **Carthage:** Put this in your `Cartfile`: diff --git a/version.xcconfig b/version.xcconfig index 2dce2c1..824217a 100644 --- a/version.xcconfig +++ b/version.xcconfig @@ -1,6 +1,6 @@ // Increment the build number whenever you modify the version string. -VERSION_STRING = 5.2.0 -BUILD_NUMBER = 16 +VERSION_STRING = 5.2.1 +BUILD_NUMBER = 17 PROJECT_NAME = BigInt BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)