Skip to content

Commit 1ecfe31

Browse files
committed
Prepare 5.2.0 release
1 parent 9aa2d81 commit 1ecfe31

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All releases of RandomKit adhere to [Semantic Versioning](http://semver.org/).
44

55
---
66

7+
## [v5.2.0](https://github.com/nvzqz/RandomKit/tree/v5.2.0) (2017-07-25)
8+
9+
- [Changes](https://github.com/nvzqz/RandomKit/compare/v5.1.0...v5.2.0)
10+
- [Release](https://github.com/nvzqz/RandomKit/releases/tag/v5.2.0)
11+
12+
### New Features
13+
- Made `Trivial` protocol public, allowing for library users to enable related optimizations for their own types
14+
- Added `jump(count:)` variant of `jump()` to `Xoroshiro` and `XorshiftStar`
15+
16+
### Improvements
17+
- Made `jump()` for `XorshiftStar` 20%+ faster
18+
- Made `reseed(with:)` for `ChaCha` 550%+ faster
19+
- `init(seed:)` is also faster due to reliance on `reseed(with:)`
20+
21+
---
22+
723
## [v5.1.0](https://github.com/nvzqz/RandomKit/tree/v5.1.0) (2017-06-24)
824

925
- [Changes](https://github.com/nvzqz/RandomKit/compare/v5.0.0...v5.1.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ to learn more.
113113
```ruby
114114
use_frameworks!
115115

116-
pod 'RandomKit', '~> 5.1.0'
116+
pod 'RandomKit', '~> 5.2.0'
117117
```
118118

119119
If you want to be on the bleeding edge, replace the last line with:

RandomKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RandomKit"
3-
s.version = "5.1.0"
3+
s.version = "5.2.0"
44
s.summary = "Random data generation in Swift."
55
s.homepage = "https://github.com/nvzqz/#{s.name}"
66
s.license = { :type => "MIT", :file => "LICENSE.md" }

RandomKit.xcodeproj/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>5.1.0</string>
18+
<string>5.2.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>25</string>
22+
<string>26</string>
2323
<key>NSHumanReadableCopyright</key>
2424
<string>Copyright © 2015 Nikolai Vazquez. All rights reserved.</string>
2525
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)