aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2024-05-01 00:40:37 +0900
committerKazuki Yamaguchi <k@rhe.jp>2024-05-01 01:18:12 +0900
commitde7da9382d20b9765caaf8bac1448cb271e94577 (patch)
tree1b1aaa015365a3592048577fb41f0867505e0860
parent3bdde7d88dc12f8e25d42c100d4f5717b1e8853c (diff)
downloadruby-openssl-ky/release-3.0.3.tar.gz
Ruby/OpenSSL 3.0.3ky/release-3.0.3
-rw-r--r--History.md11
-rw-r--r--lib/openssl/version.rb2
-rw-r--r--openssl.gemspec2
3 files changed, 13 insertions, 2 deletions
diff --git a/History.md b/History.md
index 876c37a3..0eb622ad 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,14 @@
+Version 3.0.3
+=============
+
+Bug fixes
+---------
+
+* Fix a performance regression introduced in v2.1.3 on a buffered write to
+ SSLSocket. This affects Ruby 3.1 and earlier.
+ [[GitHub #706]](https://github.com/ruby/openssl/pull/706)
+
+
Version 3.0.2
=============
diff --git a/lib/openssl/version.rb b/lib/openssl/version.rb
index 194e4fb7..07b710c2 100644
--- a/lib/openssl/version.rb
+++ b/lib/openssl/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module OpenSSL
- VERSION = "3.0.2"
+ VERSION = "3.0.3"
end
diff --git a/openssl.gemspec b/openssl.gemspec
index 1c6f0fcb..f7dde3c2 100644
--- a/openssl.gemspec
+++ b/openssl.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openssl"
- spec.version = "3.0.2"
+ spec.version = "3.0.3"
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.}