Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.1"
".": "1.0.2"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_