Skip to content

Commit 38a1a4a

Browse files
committed
Ruby/OpenSSL 4.0.1
1 parent ff90193 commit 38a1a4a

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

History.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
Version 4.0.1
2+
=============
3+
4+
Notable changes
5+
---------------
6+
7+
* Add `sync_close` keyword argument to `OpenSSL::SSL::SSLSocket.new` as a
8+
short-hand for setting `sync_close` attribute on the created `SSLSocket`
9+
instance.
10+
[[GitHub #955]](https://github.com/ruby/openssl/issues/955)
11+
[[GitHub #996]](https://github.com/ruby/openssl/pull/996)
12+
13+
14+
Bug fixes
15+
---------
16+
17+
* Fix uninitialized variables in `OpenSSL::OCSP::BasicResponse#status`.
18+
[[GitHub #1004]](https://github.com/ruby/openssl/pull/1004)
19+
20+
121
Version 4.0.0
222
=============
323

lib/openssl/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
module OpenSSL
44
# The version string of Ruby/OpenSSL.
5-
VERSION = "4.0.0"
5+
VERSION = "4.0.1"
66
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 = "4.0.0"
3+
spec.version = "4.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{SSL/TLS and general-purpose cryptography for Ruby}

0 commit comments

Comments
 (0)