Skip to content

Commit 7391fb6

Browse files
committed
update README with 1.12.0 ChangeLog notes, bump library version
1 parent 016ce2d commit 7391fb6

3 files changed

Lines changed: 19 additions & 3 deletions

File tree

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,22 @@ Or by defining `-DHAVE_SECURE_RENEGOTIATION`.
214214

215215
## Release Notes
216216

217+
### wolfSSL JNI Release 1.12.0 (03/31/2023)
218+
219+
Release 1.12.0 has bug fixes and new features including:
220+
221+
**JNI and JSSE Changes:**
222+
* Additional synchronization support in WolfSSLCertificate (PR 118)
223+
* Prevent WolfSSLCertificate from freeing `WOLFSSL_X509` if not owned (PR 118)
224+
* Fix `X509KeyManager.getCertificateChain()` to return `null` when alias is `null` (PR 119)
225+
226+
**Documentation Changes:**
227+
* Add Android Studio instructions for how to update source symlinks on Windows (PR 117)
228+
229+
The wolfSSL JNI Manual is available at:
230+
https://www.wolfssl.com/documentation/manuals/wolfssljni. For build
231+
instructions and more detailed comments, please check the manual.
232+
217233
### wolfSSL JNI Release 1.11.0 (12/2/2022)
218234

219235
Release 1.11.0 has bug fixes and new features including:

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- versioning/manifest properties -->
1515
<property name="implementation.vendor" value="wolfSSL Inc." />
1616
<property name="implementation.title" value="wolfSSL JNI/JSSE" />
17-
<property name="implementation.version" value="1.11" />
17+
<property name="implementation.version" value="1.12" />
1818

1919
<!-- set properties for this build -->
2020
<property name="src.dir" value="src/java/"/>

src/java/com/wolfssl/provider/jsse/WolfSSLProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ public void errorCallback(int ok, int err, String hash) {
7373
* wolfSSL JSSE Provider class
7474
*/
7575
public WolfSSLProvider() {
76-
super("wolfJSSE", 1.11, "wolfSSL JSSE Provider");
77-
//super("wolfJSSE", "1.11", "wolfSSL JSSE Provider");
76+
super("wolfJSSE", 1.12, "wolfSSL JSSE Provider");
77+
//super("wolfJSSE", "1.12", "wolfSSL JSSE Provider");
7878

7979
/* load native wolfSSLJNI library */
8080
WolfSSL.loadLibrary();

0 commit comments

Comments
 (0)