Skip to content

Commit f5b791d

Browse files
committed
Bump version to 3.0.0. Update change log.
1 parent 93bc353 commit f5b791d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 3.0.0 (2017-02-07)
2+
3+
This release contains an API-breaking change, so the major version number was bumped. It is, however, very likely that your existing code using Deque will continue to work unchanged.
4+
5+
- The `SubSequence` of `Deque` has been changed from `RandomAccessSlice` to `RangeReplaceableRandomAccessSlice` to adopt newly enforced requirements of `RangeReplaceableCollection`.
6+
- (Xcode project) The macOS deployment target was set to 10.9.
7+
- (Xcode project) Code signing was disabled, following Xcode 8 suggestions.
8+
- (Xcode project) App extensions are now able to link Deque's tvOS framework.
9+
110
# 2.0.1 (2016-11-08)
211

312
This release updates the project for Swift 3.0.1, restoring support for the Swift Package Manager.

Deque.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |spec|
33
spec.name = 'Deque'
4-
spec.version = '2.0.1'
4+
spec.version = '3.0.0'
55
spec.osx.deployment_target = "10.9"
66
spec.ios.deployment_target = "8.0"
77
spec.tvos.deployment_target = "9.0"

version.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Increment the build number whenever you modify the version string.
2-
VERSION_STRING = 2.0.1
3-
BUILD_NUMBER = 103
2+
VERSION_STRING = 3.0.0
3+
BUILD_NUMBER = 104

0 commit comments

Comments
 (0)