aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2018-05-12 15:48:07 +0900
committerKazuki Yamaguchi <k@rhe.jp>2018-05-12 15:48:07 +0900
commit1f90516e32ecd755d592002585e97cb78752eae2 (patch)
tree9b7e9906630d0198131633b7c0e6c90f340b171b
parentcc2e9703d885815b01ae7374c35671a31df56310 (diff)
downloadruby-openssl-1f90516e32ecd755d592002585e97cb78752eae2.tar.gz
Ruby/OpenSSL 2.0.8v2.0.8
-rw-r--r--History.md14
-rw-r--r--ext/openssl/ossl_version.h2
-rw-r--r--openssl.gemspec2
3 files changed, 16 insertions, 2 deletions
diff --git a/History.md b/History.md
index 9cc60caa..db7d98e2 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,17 @@
+Version 2.0.8
+=============
+
+Bug fixes
+---------
+
+* OpenSSL::Cipher#pkcs5_keyivgen raises an error when a negative iteration
+ count is given.
+ [[GitHub #184]](https://github.com/ruby/openssl/pull/184)
+* Fixed build with LibreSSL 2.7.
+ [[GitHub #192]](https://github.com/ruby/openssl/issues/192)
+ [[GitHub #193]](https://github.com/ruby/openssl/pull/193)
+
+
Version 2.0.7
=============
diff --git a/ext/openssl/ossl_version.h b/ext/openssl/ossl_version.h
index 56dfe1d7..a4b99e80 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.7"
+#define OSSL_VERSION "2.0.8"
#endif /* _OSSL_VERSION_H_ */
diff --git a/openssl.gemspec b/openssl.gemspec
index 3138cbca..41444c5a 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
- spec.version = "2.0.7"
+ spec.version = "2.0.8"
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.}