aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2017-12-14 18:02:15 +0900
committerKazuki Yamaguchi <k@rhe.jp>2017-12-14 18:51:33 +0900
commit44294c43425be1af44e5de6d9a879cdbba1c6f33 (patch)
tree1ec7cd7a09187d364fd106d9d90b35961e2e88fd
parentc68ea3b77ec5b665d9db47e2b5787bfb7bcc16fd (diff)
downloadruby-openssl-44294c43425be1af44e5de6d9a879cdbba1c6f33.tar.gz
Ruby/OpenSSL 2.0.7v2.0.7ky/release-2.0.7
-rw-r--r--History.md15
-rw-r--r--ext/openssl/ossl_version.h2
-rw-r--r--openssl.gemspec2
3 files changed, 17 insertions, 2 deletions
diff --git a/History.md b/History.md
index 9569b100..9cc60caa 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,18 @@
+Version 2.0.7
+=============
+
+Bug fixes
+---------
+
+* OpenSSL::Cipher#auth_data= could segfault if called against a non-AEAD cipher.
+ [[Bug #14024]](https://bugs.ruby-lang.org/issues/14024)
+* OpenSSL::X509::Certificate#public_key= (and similar methods) could segfault
+ when an instance of OpenSSL::PKey::PKey with no public key components is
+ passed.
+ [[Bug #14087]](https://bugs.ruby-lang.org/issues/14087)
+ [[GitHub #168]](https://github.com/ruby/openssl/pull/168)
+
+
Version 2.0.6
=============
diff --git a/ext/openssl/ossl_version.h b/ext/openssl/ossl_version.h
index 7725bc05..56dfe1d7 100644
--- a/ext/openssl/ossl_version.h
+++ b/ext/openssl/ossl_version.h
@@ -10,6 +10,6 @@
#if !defined(_OSSL_VERSION_H_)
#define _OSSL_VERSION_H_
-#define OSSL_VERSION "2.0.6"
+#define OSSL_VERSION "2.0.7"
#endif /* _OSSL_VERSION_H_ */
diff --git a/openssl.gemspec b/openssl.gemspec
index 34cef6f1..3138cbca 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
- spec.version = "2.0.6"
+ spec.version = "2.0.7"
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.}