Skip to content

Commit

Permalink
Bump version number to 1.2.0. Update CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Sep 7, 2017
1 parent 7f83e14 commit 7b47e3f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Version 1.2.0 (2017-09-07)

This release contains the following changes:

* The package requires Swift 4.
* `SipHasher` now has a method for appending slices of `UnsafeRawBufferPointer`s.
* In the supplied Xcode project, bundle identifiers have been updated. The new ones start with `org.attaswift.`.

Note that the URL for the package's Git repository has changed; please update your references.

# Version 1.1.2 (2017-05-05)

This release contains the following change:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SipHash

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

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

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

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

## Sample Code

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

```
pod 'SipHash', '~> 1.0'
pod 'SipHash', '~> 1.2'
```

### Carthage

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

```
github "attaswift/SipHash" ~> 1.0
github "attaswift/SipHash" ~> 1.2
```

### Swift Package Manager
Expand All @@ -148,7 +148,7 @@ import PackageDescription
let package = Package(
name: "MyPackage",
dependencies: [
.Package(url: "https://github.com/attaswift/SipHash.git", majorVersion: 1)
.Package(url: "https://github.com/attaswift/SipHash.git", from: "1.2.0")
]
)
```
Expand Down
2 changes: 1 addition & 1 deletion SipHash.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'SipHash'
spec.version = '1.1.2'
spec.version = '1.2.0'
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.9"
spec.tvos.deployment_target = "9.0"
Expand Down
4 changes: 2 additions & 2 deletions version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
//

// Increment the build number whenever you modify the version string.
VERSION_STRING = 1.1.2
BUILD_NUMBER = 4
VERSION_STRING = 1.2.0
BUILD_NUMBER = 5

PROJECT_NAME = SipHash
BUNDLE_IDENTIFIER_BASE = org.attaswift.$(PROJECT_NAME)
Expand Down

0 comments on commit 7b47e3f

Please sign in to comment.