Skip to content

Commit 0f6624d

Browse files
authored
v1.4.0 (#46)
1 parent 5012d4f commit 0f6624d

3 files changed

Lines changed: 33 additions & 25 deletions

File tree

CHANGES.md

Lines changed: 31 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,86 @@
1+
## [1.4.0] (2022-01-16)
2+
3+
[1.4.0]: https://github.com/RubyCrypto/ed25519/compare/v1.3.0...v1.4.0
4+
5+
- Use append_cflags instead of modifying CFLAGS directly ([#45])
6+
7+
[#45]: https://github.com/RubyCrypto/ed25519/pull/45
8+
19
## [1.3.0] (2022-01-16)
210

3-
[1.3.0]: https://github.com/crypto-rb/ed25519/compare/v1.2.4...v1.3.0
11+
[1.3.0]: https://github.com/RubyCrypto/ed25519/compare/v1.2.4...v1.3.0
412

513
- Bump rubocop dependencies. ([#30])
614
- Add support for Ruby 3 & JRuby 9.3.0. ([#31])
715

8-
[#30]: https://github.com/crypto-rb/ed25519/pull/30
9-
[#31]: https://github.com/crypto-rb/ed25519/pull/31
16+
[#30]: https://github.com/RubyCrypto/ed25519/pull/30
17+
[#31]: https://github.com/RubyCrypto/ed25519/pull/31
1018

1119
## [1.2.4] (2018-01-04)
1220

13-
[1.2.4]: https://github.com/crypto-rb/ed25519/compare/v1.2.3...v1.2.4
21+
[1.2.4]: https://github.com/RubyCrypto/ed25519/compare/v1.2.3...v1.2.4
1422

1523
* Fix JRuby platform name
1624
* Add license information to gemspec
1725

1826
## [1.2.3] (2017-12-31)
1927

20-
[1.2.3]: https://github.com/crypto-rb/ed25519/compare/v1.2.2...v1.2.3
28+
[1.2.3]: https://github.com/RubyCrypto/ed25519/compare/v1.2.2...v1.2.3
2129

22-
* [#18](https://github.com/crypto-rb/ed25519/pull/18)
30+
* [#18](https://github.com/RubyCrypto/ed25519/pull/18)
2331
`ext/ed25519_ref10`: Consolidate fe.c and ge.c
2432

2533
## [1.2.2] (2017-12-31)
2634

27-
[1.2.2]: https://github.com/crypto-rb/ed25519/compare/v1.2.1...v1.2.2
35+
[1.2.2]: https://github.com/RubyCrypto/ed25519/compare/v1.2.1...v1.2.2
2836

29-
* [#17](https://github.com/crypto-rb/ed25519/pull/17)
37+
* [#17](https://github.com/RubyCrypto/ed25519/pull/17)
3038
Test against Ruby 2.5.0
3139

32-
* [#16](https://github.com/crypto-rb/ed25519/pull/16)
33-
Move project to the crypto-rb GitHub organization
40+
* [#16](https://github.com/RubyCrypto/ed25519/pull/16)
41+
Move project to the RubyCrypto GitHub organization
3442

3543
## [1.2.1] (2017-12-15)
3644

37-
[1.2.1]: https://github.com/crypto-rb/ed25519/compare/v1.2.0...v1.2.1
45+
[1.2.1]: https://github.com/RubyCrypto/ed25519/compare/v1.2.0...v1.2.1
3846

39-
* [#14](https://github.com/crypto-rb/ed25519/pull/14)
47+
* [#14](https://github.com/RubyCrypto/ed25519/pull/14)
4048
Support MRI 2.0+
4149

4250
## [1.2.0] (2017-12-15)
4351

44-
[1.2.0]: https://github.com/crypto-rb/ed25519/compare/v1.1.0...v1.2.0
52+
[1.2.0]: https://github.com/RubyCrypto/ed25519/compare/v1.1.0...v1.2.0
4553

46-
* [#13](https://github.com/crypto-rb/ed25519/pull/13)
54+
* [#13](https://github.com/RubyCrypto/ed25519/pull/13)
4755
Add `Ed25519::SigningKey.from_keypair`
4856

49-
* [#12](https://github.com/crypto-rb/ed25519/pull/12)
57+
* [#12](https://github.com/RubyCrypto/ed25519/pull/12)
5058
Add `Ed25519.validate_key_bytes` method
5159

5260
## [1.1.0] (2017-12-13)
5361

54-
[1.1.0]: https://github.com/crypto-rb/ed25519/compare/v1.0.0...v1.1.0
62+
[1.1.0]: https://github.com/RubyCrypto/ed25519/compare/v1.0.0...v1.1.0
5563

56-
* [#11](https://github.com/crypto-rb/ed25519/pull/11)
64+
* [#11](https://github.com/RubyCrypto/ed25519/pull/11)
5765
ext/ed25519_java: switch to str4d/ed25519-java implementation (fixes #4)
5866

59-
* [#9](https://github.com/crypto-rb/ed25519/pull/9)
67+
* [#9](https://github.com/RubyCrypto/ed25519/pull/9)
6068
Implement Java backend as a proper JRuby extension
6169

62-
* [#8](https://github.com/crypto-rb/ed25519/pull/8)
70+
* [#8](https://github.com/RubyCrypto/ed25519/pull/8)
6371
Use an attr_accessor for Ed25519.provider
6472

6573
## [1.0.0] (2017-12-12)
6674

67-
[1.0.0]: https://github.com/crypto-rb/ed25519/compare/v0.1.0...v1.0.0
75+
[1.0.0]: https://github.com/RubyCrypto/ed25519/compare/v0.1.0...v1.0.0
6876

69-
* [#7](https://github.com/crypto-rb/ed25519/pull/7)
77+
* [#7](https://github.com/RubyCrypto/ed25519/pull/7)
7078
Keypair refactor
7179

72-
* [#6](https://github.com/crypto-rb/ed25519/pull/6)
80+
* [#6](https://github.com/RubyCrypto/ed25519/pull/6)
7381
Switch from "ref" C implementation to SUPERCOP "ref10"
7482

75-
* [#5](https://github.com/crypto-rb/ed25519/pull/5)
83+
* [#5](https://github.com/RubyCrypto/ed25519/pull/5)
7684
Raise Ed25519::VerifyError if signature verification fails
7785

7886
# 0.1.0 (2017-12-11)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[ci-image]: https://github.com/RubyCrypto/ed25519/workflows/CI/badge.svg
66
[ci-link]: https://github.com/RubyCrypto/ed25519/actions?query=workflow%3ACI+branch%3Amaster
77
[docs-image]: https://img.shields.io/badge/yard-docs-blue.svg
8-
[docs-link]: http://www.rubydoc.info/gems/ed25519/1.3.0
8+
[docs-link]: http://www.rubydoc.info/gems/ed25519/1.4.0
99
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg
1010
[license-link]: https://github.com/RubyCrypto/ed25519/blob/master/LICENSE
1111

lib/ed25519/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Ed25519
4-
VERSION = "1.3.0"
4+
VERSION = "1.4.0"
55
end

0 commit comments

Comments
 (0)