summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--History.md44
-rw-r--r--openssl.gemspec2
2 files changed, 26 insertions, 20 deletions
diff --git a/History.md b/History.md
index 941fba05..6e4baeb3 100644
--- a/History.md
+++ b/History.md
@@ -1,26 +1,32 @@
-Version 2.1.0
-=============
-
-Compatibility notes
--------------------
-
-* Support for OpenSSL version 0.9.8 and 1.0.0 is completely removed.
-
-Supported platforms
--------------------
-
-* OpenSSL 1.0.1, 1.0.2, 1.1.0
-* LibreSSL 2.3, 2.4, 2.5
-* Ruby 2.3, 2.4
+Version 2.1.0.beta1
+===================
Notable changes
---------------
-Removals
---------
-
-Deprecations
-------------
+* Support for OpenSSL versions before 1.0.1 is removed.
+ [[GitHub #86]](https://github.com/ruby/openssl/pull/86)
+* OpenSSL::BN#negative?, #+@, and #-@ are added.
+* OpenSSL::SSL::SSLSocket#connect raises a more informative exception when
+ certificate verification fails.
+ [[GitHub #99]](https://github.com/ruby/openssl/pull/99)
+* OpenSSL::KDF module is newly added. Support for scrypt is added.
+ [[GitHub #109]](https://github.com/ruby/openssl/pull/109)
+* OpenSSL.fips_mode is added. We have had the setter, but not the getter.
+ [[GitHub #125]](https://github.com/ruby/openssl/pull/125)
+* OpenSSL::OCSP::Request#signed? is added.
+* OpenSSL::ASN1 handles the indefinite length form better. OpenSSL::ASN1.decode
+ no longer wrongly treats the end-of-contents octets as part of the content.
+ OpenSSL::ASN1::ASN1Data#infinite_length is renamed to #indefinite_length.
+ [[GitHub #98]](https://github.com/ruby/openssl/pull/98)
+* OpenSSL::X509::Name#add_entry now accepts two additional keyword arguments
+ 'loc' and 'set'.
+ [[GitHub #94]](https://github.com/ruby/openssl/issues/94)
+* OpenSSL::SSL::SSLContext#min_version= and #max_version= are added.
+ [[GitHub #142]](https://github.com/ruby/openssl/pull/142)
+* OpenSSL::X509::Name#to_utf8 is added.
+ [[GitHub #26]](https://github.com/ruby/openssl/issues/26)
+ [[GitHub #143]](https://github.com/ruby/openssl/pull/143)
Version 2.0.5
diff --git a/openssl.gemspec b/openssl.gemspec
index 470837dd..6081853e 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
- spec.version = "2.1.0"
+ spec.version = "2.1.0.beta1"
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.}