diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d7e5f1..b870c5e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.1" + ".": "1.0.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..71f9eaa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [1.0.2](https://github.com/nodejs/ncrypto/compare/1.0.1...v1.0.2) (2026-01-22) + + +### Bug Fixes + +* use BN_GENCB_get_arg accessor for OpenSSL 3.x compatibility ([#16](https://github.com/nodejs/ncrypto/issues/16)) ([afc7e12](https://github.com/nodejs/ncrypto/commit/afc7e12c3f862165d7cfdc10bd971d7115d4fdb5)) diff --git a/CMakeLists.txt b/CMakeLists.txt index bdb2c35..d84fb58 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.28) -project(ncrypto VERSION 1.0.1) # x-release-please-version +project(ncrypto VERSION 1.0.2) # x-release-please-version include(CTest) include(GNUInstallDirs) diff --git a/include/version.h b/include/version.h index cf636a0..cf9a745 100644 --- a/include/version.h +++ b/include/version.h @@ -3,12 +3,12 @@ #ifndef NCRYPTO_VERSION_H_ #define NCRYPTO_VERSION_H_ -#define NCRYPTO_VERSION "1.0.1" // x-release-please-version +#define NCRYPTO_VERSION "1.0.2" // x-release-please-version enum { NCRYPTO_VERSION_MAJOR = 1, // x-release-please-major NCRYPTO_VERSION_MINOR = 0, // x-release-please-minor - NCRYPTO_VERSION_REVISION = 1, // x-release-please-patch + NCRYPTO_VERSION_REVISION = 2, // x-release-please-patch }; #endif // NCRYPTO_VERSION_H_