Skip to content

Commit 0928cc0

Browse files
committed
Bump version to 4.0.2 and update CHANGES.md
1 parent 96be04d commit 0928cc0

File tree

2 files changed

+34
-30
lines changed

2 files changed

+34
-30
lines changed

CHANGES.md

Lines changed: 33 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
4.0.1 (2016-12-04)
2-
------------------
1+
## 4.0.2 (2016-03-12)
2+
3+
* [#157](https://github.com/cryptosphere/rbnacl/pull/157)
4+
Raise error on degenerate keys (fixes #152).
5+
([@paragonie-scott], [@tarcieri])
6+
7+
## 4.0.1 (2016-12-04)
38

49
* [#148](https://github.com/cryptosphere/rbnacl/pull/148)
510
Last minute changes to the ChaCha20Poly1305 API.
611
([@tarcieri])
712

8-
4.0.0 (2016-12-04)
9-
------------------
13+
## 4.0.0 (2016-12-04)
1014

1115
* [#141](https://github.com/cryptosphere/rbnacl/pull/141)
1216
Add wrappers for ChaCha20Poly1305 AEAD ciphers.
@@ -20,18 +24,18 @@
2024
Require Ruby 2.2.6+.
2125
([@tarcieri])
2226

23-
3.4.0 (2015-05-07)
24-
------------------
27+
## 3.4.0 (2015-05-07)
28+
2529
* [#135](https://github.com/cryptosphere/rbnacl/pull/135)
26-
Expose RbNaCl::Signatures::Ed25519#keypair_bytes.
30+
Expose `RbNaCl::Signatures::Ed25519#keypair_bytes`.
2731
([@grempe])
2832

2933
* [#137](https://github.com/cryptosphere/rbnacl/pull/137)
3034
Expose HMAC-SHA512 (with 64-byte keys)
3135
([@mwpastore])
3236

33-
3.3.0 (2015-12-29)
34-
------------------
37+
## 3.3.0 (2015-12-29)
38+
3539
* [#105](https://github.com/cryptosphere/rbnacl/pull/105)
3640
Add salt/personalisation strings for Blake2b.
3741
([@namelessjon])
@@ -40,39 +44,39 @@
4044
Remove use of Thread.exclusive when initializing library.
4145
([@tarcieri])
4246

43-
3.2.0 (2015-05-31)
44-
------------------
47+
## 3.2.0 (2015-05-31)
48+
4549
* Fix method signature for blake2b
4650
* RuboCop-friendly codebase
4751

48-
3.1.2 (2014-08-30)
49-
------------------
52+
## 3.1.2 (2014-08-30)
53+
5054
* Fix scrypt support with libsodium 0.7.0 (scryptsalsa208sha256)
5155

52-
3.1.1 (2014-06-14)
53-
------------------
56+
## 3.1.1 (2014-06-14)
57+
5458
* Fix undefined variable warning
5559
* RSpec 3 fixups
5660
* RuboCop
5761

58-
3.1.0 (2014-05-22)
59-
------------------
60-
* The scrypt password hashing function: RbNaCl::PasswordHash.scrypt
62+
## 3.1.0 (2014-05-22)
63+
64+
* The scrypt password hashing function: `RbNaCl::PasswordHash.scrypt`
65+
66+
## 3.0.1 (2014-05-12)
6167

62-
3.0.1 (2014-05-12)
63-
------------------
64-
* Load gem from RBNACL_LIBSODIUM_GEM_LIB_PATH if set. Used by rbnacl-libsodium
68+
* Load gem from `RBNACL_LIBSODIUM_GEM_LIB_PATH` if set. Used by rbnacl-libsodium
6569
gem to use libsodium compiled from a gem.
6670

67-
3.0.0 (2014-04-22)
68-
------------------
71+
## 3.0.0 (2014-04-22)
72+
6973
* Rename RandomNonceBox to SimpleBox (backwards compatibility preserved)
7074
* Reverse documented order of SimpleBox/RandomNonceBox initialize parameters.
7175
Technically backwards compatible, but confusing.
7276
* Ensure all strings are ASCII-8BIT/BINARY encoding prior to use
7377

74-
2.0.0 (2013-11-07)
75-
------------------
78+
## 2.0.0 (2013-11-07)
79+
7680
* Add encrypt/decrypt aliases for Crypto::RandomNonceBox
7781
* Rename Crypto module to RbNaCl module
7882
* RbNaCl::VerifyKey#verify operand order was reversed. New operand order is
@@ -91,15 +95,14 @@
9195
* Changes in the low level binding for libsodium and removal of the NaCl module
9296
* Add a mutex around calls to randombytes in libsodium
9397

94-
1.1.0 (2013-04-19)
95-
------------------
98+
## 1.1.0 (2013-04-19)
9699

97100
* Provide API for querying primitives and details about them, such as key
98101
lengths, nonce lengths, etc.
99102
* Fixed bug on passing null bytes to sha256, sha512 functions.
100103

101-
1.0.0 (2013-03-08)
102-
------------------
104+
## 1.0.0 (2013-03-08)
105+
103106
* Initial release
104107

105108
[@namelessjon]: https://github.com/namelessjon
@@ -108,3 +111,4 @@
108111
[@grempe]: https://github.com/grempe
109112
[@mwpastore]: https://github.com/mwpastore
110113
[@elijh]: https://github.com/elijh
114+
[@paragonie-scott]: https://github.com/paragonie-scott

lib/rbnacl/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# NaCl/libsodium for Ruby
55
module RbNaCl
66
# The library's version
7-
VERSION = "4.0.1"
7+
VERSION = "4.0.2"
88
end

0 commit comments

Comments
 (0)