-
Notifications
You must be signed in to change notification settings - Fork 17
Prep for 1.9 release #184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prep for 1.9 release #184
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR prepares the repository for version 1.9.0 release by updating version numbers across multiple files, documenting changes in the ChangeLog, fixing Visual Studio compilation warnings in C code, and adjusting tests for cross-platform compatibility.
- Version bumped from 1.8 to 1.9 consistently across build files and documentation
- Visual Studio compilation warnings resolved through proper variable initialization and condition reordering
- Test improvements for cross-platform compatibility with feature detection and platform-specific exception handling
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| ChangeLog.md | Documents all new features, bug fixes, and changes for the 1.9.0 release |
| WolfCryptProvider.java | Updates provider version number from 1.8 to 1.9 |
| build.xml | Updates implementation version from 1.8 to 1.9 |
| pom.xml | Updates artifact version from 1.8.0-SNAPSHOT to 1.9.0-SNAPSHOT |
| README.md | Updates dependency example version from 1.8.0-SNAPSHOT to 1.9.0-SNAPSHOT |
| jni/jni_rng.c | Fixes Visual Studio warning by reordering conditions to avoid signed/unsigned comparison issues |
| jni/jni_ecc.c | Fixes Visual Studio warning by initializing name variable to NULL |
| WolfCryptSignatureTest.java | Adds feature detection checks to skip RSA-PSS tests when digest algorithms aren't compiled in |
| WolfCryptRandomTest.java | Adds handling for NegativeArraySizeException thrown by Windows Java versions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
kaleb-himes
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @cconlon
…not compiled into native wolfSSL
kaleb-himes
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good updates @cconlon, thank you!
This PR preps for the 1.9 release, including: