File tree Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Expand file tree Collapse file tree 4 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ All releases of RandomKit adhere to [Semantic Versioning](http://semver.org/).
4
4
5
5
---
6
6
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
+
7
23
## [ v5.1.0] ( https://github.com/nvzqz/RandomKit/tree/v5.1.0 ) (2017-06-24)
8
24
9
25
- [ Changes] ( https://github.com/nvzqz/RandomKit/compare/v5.0.0...v5.1.0 )
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ to learn more.
113
113
```ruby
114
114
use_frameworks!
115
115
116
- pod 'RandomKit', '~> 5.1 .0 '
116
+ pod 'RandomKit', '~> 5.2 .0 '
117
117
```
118
118
119
119
If you want to be on the bleeding edge, replace the last line with:
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RandomKit"
3
- s . version = "5.1 .0"
3
+ s . version = "5.2 .0"
4
4
s . summary = "Random data generation in Swift."
5
5
s . homepage = "https://github.com/nvzqz/#{ s . name } "
6
6
s . license = { :type => "MIT" , :file => "LICENSE.md" }
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >5.1 .0 </string >
18
+ <string >5.2 .0 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
22
- <string >25 </string >
22
+ <string >26 </string >
23
23
<key >NSHumanReadableCopyright </key >
24
24
<string >Copyright © 2015 Nikolai Vazquez. All rights reserved. </string >
25
25
<key >NSPrincipalClass </key >
You can’t perform that action at this time.
0 commit comments