Skip to content

Commit e5bbd01

Browse files
committed
Ruby/OpenSSL 3.0.1
1 parent d2965ed commit e5bbd01

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

History.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
Version 3.0.1
2+
=============
3+
4+
Merged changes in 2.1.4 and 2.2.2. Additionally, the following issues are fixed
5+
by this release.
6+
7+
Bug fixes
8+
---------
9+
10+
* Add missing type check in OpenSSL::PKey::PKey#sign's optional parameters.
11+
[[GitHub #531]](https://github.com/ruby/openssl/pull/531)
12+
* Work around OpenSSL 3.0's HMAC issues with a zero-length key.
13+
[[GitHub #538]](https://github.com/ruby/openssl/pull/538)
14+
* Fix a regression in OpenSSL::PKey::DSA.generate's default of 'q' size.
15+
[[GitHub #483]](https://github.com/ruby/openssl/issues/483)
16+
[[GitHub #539]](https://github.com/ruby/openssl/pull/539)
17+
* Restore OpenSSL::PKey.read's ability to decode "openssl ecparam -genkey"
18+
output when linked against OpenSSL 3.0.
19+
[[GitHub #535]](https://github.com/ruby/openssl/pull/535)
20+
[[GitHub #540]](https://github.com/ruby/openssl/pull/540)
21+
* Restore error checks in OpenSSL::PKey::EC#{to_der,to_pem}.
22+
[[GitHub #541]](https://github.com/ruby/openssl/pull/541)
23+
24+
125
Version 3.0.0
226
=============
327

lib/openssl/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 OpenSSL
4-
VERSION = "3.0.0"
4+
VERSION = "3.0.1"
55
end

openssl.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |spec|
22
spec.name = "openssl"
3-
spec.version = "3.0.0"
3+
spec.version = "3.0.1"
44
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
55
spec.email = ["ruby-core@ruby-lang.org"]
66
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}

0 commit comments

Comments
 (0)