1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/openssl] Ruby/OpenSSL 2.2.1

https://github.com/ruby/openssl/commit/65e7207a07
This commit is contained in:
Kazuki Yamaguchi 2021-10-16 16:59:59 +09:00
parent 75e72baba1
commit cea3c55d58
3 changed files with 19 additions and 2 deletions

View file

@ -1,3 +1,20 @@
Version 2.2.1
=============
Merged changes in 2.1.3. Additionally, the following issues are fixed by this
release.
Bug fixes
---------
* Fix crash in `OpenSSL::Timestamp::{Request,Response,TokenInfo}.new` when
invalid arguments are given.
[[GitHub #407]](https://github.com/ruby/openssl/pull/407)
* Fix `OpenSSL::Timestamp::Factory#create_timestamp` with LibreSSL on platforms
where `time_t` has a different size from `long`.
[[GitHub #454]](https://github.com/ruby/openssl/pull/454)
Version 2.2.0
=============

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true
module OpenSSL
VERSION = "2.2.0"
VERSION = "2.2.1"
end

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
spec.version = "2.2.0"
spec.version = "2.2.1"
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.}