diff --git a/History.md b/History.md
index c18ae95b..b0d84cc8 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,13 @@
+## 0.14.3
+
+* [fix] SSLSocket#alpn_protocol to be nil when not used (#287)
+* [feat] try resolving curve-name from EC public key
+* [feat] implement missing PKey::EC#dsa_verify_asn1 (#241)
+* [feat] implement support for PKey::EC.generate (#255)
+* [refactor] make sure curveName is set when using PKey.read (#289)
+* [fix] add Cipher#auth_data(arg) override (Rails 7.x compatibility) (#290)
+* [fix] raise TypeError when arg not of expected type (jruby/jruby#7875)
+
## 0.14.2
* [deps] upgrade BC to latest 1.74
diff --git a/lib/jopenssl/version.rb b/lib/jopenssl/version.rb
index 94d72c19..4f66dc82 100644
--- a/lib/jopenssl/version.rb
+++ b/lib/jopenssl/version.rb
@@ -1,5 +1,5 @@
module JOpenSSL
- VERSION = '0.14.3.dev'
+ VERSION = '0.14.3'
BOUNCY_CASTLE_VERSION = '1.74'
end
diff --git a/pom.xml b/pom.xml
index 167f0e7d..80a93a95 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
4.0.0
rubygems
jruby-openssl
- 0.14.3.dev-SNAPSHOT
+ 0.14.3
gem
JRuby OpenSSL
JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.