From 9a603e5315629b176aa7e61191ef3e51d2f52093 Mon Sep 17 00:00:00 2001 From: Karoly Lorentey Date: Tue, 7 Feb 2017 12:47:17 +0100 Subject: [PATCH] Bump version to 4.0.2. Update change log. --- BTree.podspec | 2 +- CHANGELOG.md | 12 ++++++++++-- version.xcconfig | 4 ++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/BTree.podspec b/BTree.podspec index 9349a3e..0ba5235 100644 --- a/BTree.podspec +++ b/BTree.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'BTree' - spec.version = '4.0.1' + spec.version = '4.0.2' spec.osx.deployment_target = "10.9" spec.ios.deployment_target = "8.0" spec.tvos.deployment_target = "9.0" diff --git a/CHANGELOG.md b/CHANGELOG.md index 498f580..a5ef78b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ -# Unreleased changes on master +# 4.0.2 (2017-02-07) -- [Issue #5][issue5]: Add a benchmark suite +This release contains the following changes: + +- BTree now compiles in Swift 3.1. +- [Issue #5][issue5]: There is a new `PerformanceTests` target in the Xcode project containing some simple benchmarks. This facility is experimental and may be replaced later. +- (Xcode project) The macOS deployment target was corrected to 10.9. Previously it was set at 10.11 by mistake. +- (Xcode project) The build number is now correctly set in the tvOS framework. +- (Xcode project) Code signing has been disabled, following Xcode 8 best practices. + +[issue5]: https://github.com/lorentey/BTree/issues/5 # 4.0.1 (2016-11-08) diff --git a/version.xcconfig b/version.xcconfig index 0e6e9b2..00a36eb 100644 --- a/version.xcconfig +++ b/version.xcconfig @@ -1,3 +1,3 @@ // Increment the build number whenever you modify the version string. -VERSION_STRING = 4.0.1 -BUILD_NUMBER = 10 +VERSION_STRING = 4.0.2 +BUILD_NUMBER = 11