Skip to content
Merged
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.1.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## [1.1.0](https://github.com/nodejs/ncrypto/compare/1.0.1...v1.1.0) (2026-01-31)


### Features

* sync source code with nodejs/node ([#17](https://github.com/nodejs/ncrypto/issues/17)) ([47c21db](https://github.com/nodejs/ncrypto/commit/47c21db34df5f00eab945e2cd4e3ca6d9d57c793))


### Bug Fixes

* add missing header files during install ([#27](https://github.com/nodejs/ncrypto/issues/27)) ([d714e74](https://github.com/nodejs/ncrypto/commit/d714e745cd54b5f06686e2def826da101ebb2205))
* 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.1.0) # x-release-please-version

include(CTest)
include(GNUInstallDirs)
Expand Down
6 changes: 3 additions & 3 deletions include/ncrypto/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.1.0" // 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_MINOR = 1, // x-release-please-minor
NCRYPTO_VERSION_REVISION = 0, // x-release-please-patch
};

#endif // NCRYPTO_VERSION_H_