aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2022-12-23 08:40:26 +0900
committerKazuki Yamaguchi <k@rhe.jp>2022-12-23 08:40:26 +0900
commit04acccd69263dc0818aa5e2180f70e8514388e43 (patch)
tree70d206d40c36fa87bfcc807af9ed7d011ac5637b
parentec19e47a0ac520911435b5b49c0335a2ed02e144 (diff)
downloadruby-openssl-maint-2.2.tar.gz
Ruby/OpenSSL 2.2.3maint-2.2ky/release-2.2.3
-rw-r--r--History.md15
-rw-r--r--lib/openssl/version.rb2
-rw-r--r--openssl.gemspec2
3 files changed, 17 insertions, 2 deletions
diff --git a/History.md b/History.md
index 60b9dd88..b4dddd17 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,18 @@
+Version 2.2.3
+=============
+
+Bug fixes
+---------
+
+* Fix serveral methods in OpenSSL::PKey::EC::Point attempting to raise an error
+ with an incorrect class, which would end up with a TypeError.
+ [[GitHub #570]](https://github.com/ruby/openssl/pull/570)
+* Fix OpenSSL::PKey::EC::Point#eql? and OpenSSL::PKey::EC::Group#eql?
+ incorrectly treated OpenSSL's internal errors as "not equal".
+ [[GitHub #564]](https://github.com/ruby/openssl/pull/564)
+* Fix build with LibreSSL 3.5 or later.
+
+
Version 2.2.2
=============
diff --git a/lib/openssl/version.rb b/lib/openssl/version.rb
index 89e05206..4bb2ca12 100644
--- a/lib/openssl/version.rb
+++ b/lib/openssl/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module OpenSSL
- VERSION = "2.2.2"
+ VERSION = "2.2.3"
end
diff --git a/openssl.gemspec b/openssl.gemspec
index c8e3cc3f..426cbfb6 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
- spec.version = "2.2.2"
+ spec.version = "2.2.3"
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
spec.email = ["ruby-core@ruby-lang.org"]
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}