From 6e0dca72a212907719cb1f0db28bbf3924ab2866 Mon Sep 17 00:00:00 2001 From: Andrew Hannon Date: Tue, 10 Oct 2017 10:48:24 -0400 Subject: [PATCH] Bumped build and version numbers --- BigInt.podspec | 2 +- CHANGELOG.md | 7 +++++++ version.xcconfig | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/BigInt.podspec b/BigInt.podspec index f907a03..6518b15 100644 --- a/BigInt.podspec +++ b/BigInt.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = 'BigInt' - spec.version = '3.0.0' + spec.version = '3.0.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 9581d98..7a5de4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 3.0.1 (2017-10-10) + +This release contains the following bug fixes: + +- Issue #27 — changing scope of `BigUInt` methods `kind` and `storage` to be `fileprivate` +- Making `subscript` method of `BigUInt` public + # 3.0.0 (2017-09-07) This is a major release upgrading BigInt to the new integer protocols introduced in Swift 4 as part of [SE-0104, Protocol-oriented integers][se-0104]. diff --git a/version.xcconfig b/version.xcconfig index 82cc4b5..3bf2c7c 100644 --- a/version.xcconfig +++ b/version.xcconfig @@ -1,6 +1,6 @@ // Increment the build number whenever you modify the version string. -VERSION_STRING = 3.0.0 -BUILD_NUMBER = 8 +VERSION_STRING = 3.0.1 +BUILD_NUMBER = 9 PROJECT_NAME = BigInt BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)