Skip to content

Commit 7b47e3f

Browse files
committed
Bump version number to 1.2.0. Update CHANGELOG.
1 parent 7f83e14 commit 7b47e3f

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Version 1.2.0 (2017-09-07)
2+
3+
This release contains the following changes:
4+
5+
* The package requires Swift 4.
6+
* `SipHasher` now has a method for appending slices of `UnsafeRawBufferPointer`s.
7+
* In the supplied Xcode project, bundle identifiers have been updated. The new ones start with `org.attaswift.`.
8+
9+
Note that the URL for the package's Git repository has changed; please update your references.
10+
111
# Version 1.1.2 (2017-05-05)
212

313
This release contains the following change:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SipHash
22

3-
[![Swift 3.x, 4.0](https://img.shields.io/badge/Swift-3,%204-blue.svg)](https://swift.org)
3+
[![Swift 4.0](https://img.shields.io/badge/Swift-4-blue.svg)](https://swift.org)
44
[![License](https://img.shields.io/badge/licence-MIT-blue.svg)](https://github.com/attaswift/SipHash/blob/master/LICENSE.md)
55
[![Platform](https://img.shields.io/badge/platforms-macOS%20∙%20iOS%20∙%20watchOS%20∙%20tvOS%20∙%20Linux-blue.svg)](https://developer.apple.com/platforms/)
66

@@ -34,7 +34,7 @@ independent implementation that's available for use in third-party code.
3434

3535
[stdlib]: https://github.com/apple/swift/blob/master/stdlib/public/core/SipHash.swift.gyb
3636

37-
SipHash requires Swift 3.0.1. A prerelease variant that supports Swift 4 is available on the `swift4` branch.
37+
The current release of SipHash requires Swift 4.
3838

3939
## Sample Code
4040

@@ -127,15 +127,15 @@ Obviously, your mileage may vary.
127127
If you use CocoaPods, you can start using `SipHash` by including it as a dependency in your `Podfile`:
128128

129129
```
130-
pod 'SipHash', '~> 1.0'
130+
pod 'SipHash', '~> 1.2'
131131
```
132132

133133
### Carthage
134134

135135
For Carthage, add the following line to your `Cartfile`:
136136

137137
```
138-
github "attaswift/SipHash" ~> 1.0
138+
github "attaswift/SipHash" ~> 1.2
139139
```
140140

141141
### Swift Package Manager
@@ -148,7 +148,7 @@ import PackageDescription
148148
let package = Package(
149149
name: "MyPackage",
150150
dependencies: [
151-
.Package(url: "https://github.com/attaswift/SipHash.git", majorVersion: 1)
151+
.Package(url: "https://github.com/attaswift/SipHash.git", from: "1.2.0")
152152
]
153153
)
154154
```

SipHash.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'SipHash'
3-
spec.version = '1.1.2'
3+
spec.version = '1.2.0'
44
spec.ios.deployment_target = "8.0"
55
spec.osx.deployment_target = "10.9"
66
spec.tvos.deployment_target = "9.0"

version.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77

88
// Increment the build number whenever you modify the version string.
9-
VERSION_STRING = 1.1.2
10-
BUILD_NUMBER = 4
9+
VERSION_STRING = 1.2.0
10+
BUILD_NUMBER = 5
1111

1212
PROJECT_NAME = SipHash
1313
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)

0 commit comments

Comments
 (0)