Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Version 4.0.1
=============

Notable changes
---------------

* Add `sync_close` keyword argument to `OpenSSL::SSL::SSLSocket.new` as a
short-hand for setting `sync_close` attribute on the created `SSLSocket`
instance.
[[GitHub #955]](https://github.com/ruby/openssl/issues/955)
[[GitHub #996]](https://github.com/ruby/openssl/pull/996)


Bug fixes
---------

* Fix uninitialized variables in `OpenSSL::OCSP::BasicResponse#status`.
[[GitHub #1004]](https://github.com/ruby/openssl/pull/1004)


Version 4.0.0
=============

Expand Down
2 changes: 1 addition & 1 deletion lib/openssl/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module OpenSSL
# The version string of Ruby/OpenSSL.
VERSION = "4.0.0"
VERSION = "4.0.1"
end
2 changes: 1 addition & 1 deletion openssl.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
spec.version = "4.0.0"
spec.version = "4.0.1"
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"]
spec.email = ["ruby-core@ruby-lang.org"]
spec.summary = %q{SSL/TLS and general-purpose cryptography for Ruby}
Expand Down
Loading