aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2021-10-16 16:59:59 +0900
committerKazuki Yamaguchi <k@rhe.jp>2021-10-16 16:59:59 +0900
commit65e7207a07da23214be4a7c4cd4dc32f9f01e5fd (patch)
tree9aff97932af64d643149a0f2a9f5c5cb5a6bdae1
parent74d6a346a3490d0752dc0d78de11b27e5beb6786 (diff)
downloadruby-openssl-ky/release-2.2.1.tar.gz
Ruby/OpenSSL 2.2.1v2.2.1ky/release-2.2.1
-rw-r--r--History.md17
-rw-r--r--lib/openssl/version.rb2
-rw-r--r--openssl.gemspec2
3 files changed, 19 insertions, 2 deletions
diff --git a/History.md b/History.md
index daca20c2..46435f9b 100644
--- a/History.md
+++ b/History.md
@@ -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
=============
diff --git a/lib/openssl/version.rb b/lib/openssl/version.rb
index 9c7515ba..d541cbf1 100644
--- a/lib/openssl/version.rb
+++ b/lib/openssl/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module OpenSSL
- VERSION = "2.2.0"
+ VERSION = "2.2.1"
end
diff --git a/openssl.gemspec b/openssl.gemspec
index a278ce92..ebbd0923 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -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.}