File tree 4 files changed +18
-8
lines changed
4 files changed +18
-8
lines changed Original file line number Diff line number Diff line change
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
+
1
11
# Version 1.1.2 (2017-05-05)
2
12
3
13
This release contains the following change:
Original file line number Diff line number Diff line change 1
1
# SipHash
2
2
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 )
4
4
[ ![ License] ( https://img.shields.io/badge/licence-MIT-blue.svg )] ( https://github.com/attaswift/SipHash/blob/master/LICENSE.md )
5
5
[ ![ Platform] ( https://img.shields.io/badge/platforms-macOS%20∙%20iOS%20∙%20watchOS%20∙%20tvOS%20∙%20Linux-blue.svg )] ( https://developer.apple.com/platforms/ )
6
6
@@ -34,7 +34,7 @@ independent implementation that's available for use in third-party code.
34
34
35
35
[ stdlib ] : https://github.com/apple/swift/blob/master/stdlib/public/core/SipHash.swift.gyb
36
36
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.
38
38
39
39
## Sample Code
40
40
@@ -127,15 +127,15 @@ Obviously, your mileage may vary.
127
127
If you use CocoaPods, you can start using ` SipHash ` by including it as a dependency in your ` Podfile ` :
128
128
129
129
```
130
- pod 'SipHash', '~> 1.0 '
130
+ pod 'SipHash', '~> 1.2 '
131
131
```
132
132
133
133
### Carthage
134
134
135
135
For Carthage, add the following line to your ` Cartfile ` :
136
136
137
137
```
138
- github "attaswift/SipHash" ~> 1.0
138
+ github "attaswift/SipHash" ~> 1.2
139
139
```
140
140
141
141
### Swift Package Manager
@@ -148,7 +148,7 @@ import PackageDescription
148
148
let package = Package(
149
149
name: "MyPackage",
150
150
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" )
152
152
]
153
153
)
154
154
```
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
spec . name = 'SipHash'
3
- spec . version = '1.1.2 '
3
+ spec . version = '1.2.0 '
4
4
spec . ios . deployment_target = "8.0"
5
5
spec . osx . deployment_target = "10.9"
6
6
spec . tvos . deployment_target = "9.0"
Original file line number Diff line number Diff line change 6
6
//
7
7
8
8
// 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
11
11
12
12
PROJECT_NAME = SipHash
13
13
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)
You can’t perform that action at this time.
0 commit comments