Skip to content

Commit 04acccd

Browse files
committed
Ruby/OpenSSL 2.2.3
1 parent ec19e47 commit 04acccd

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

History.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Version 2.2.3
2+
=============
3+
4+
Bug fixes
5+
---------
6+
7+
* Fix serveral methods in OpenSSL::PKey::EC::Point attempting to raise an error
8+
with an incorrect class, which would end up with a TypeError.
9+
[[GitHub #570]](https://github.com/ruby/openssl/pull/570)
10+
* Fix OpenSSL::PKey::EC::Point#eql? and OpenSSL::PKey::EC::Group#eql?
11+
incorrectly treated OpenSSL's internal errors as "not equal".
12+
[[GitHub #564]](https://github.com/ruby/openssl/pull/564)
13+
* Fix build with LibreSSL 3.5 or later.
14+
15+
116
Version 2.2.2
217
=============
318

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 = "2.2.2"
4+
VERSION = "2.2.3"
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 = "2.2.2"
3+
spec.version = "2.2.3"
44
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
55
spec.email = ["[email protected]"]
66
spec.summary = %q{OpenSSL provides SSL, TLS and general purpose cryptography.}

0 commit comments

Comments
 (0)