Skip to content

Commit f474dea

Browse files
github-actions[bot]anonrig
authored andcommitted
chore(main): release 1.1.1
1 parent 2ceab38 commit f474dea

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.0"
2+
".": "1.1.1"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [1.1.1](https://github.com/nodejs/ncrypto/compare/v1.1.0...v1.1.1) (2026-02-02)
4+
5+
6+
### Bug Fixes
7+
8+
* re-add more functions that are moved ([2ceab38](https://github.com/nodejs/ncrypto/commit/2ceab38e9caafd49b2f0a722ad76ae68f68fe7b5))
9+
* re-add removed BignumPointer::bitLength() ([0ba85e3](https://github.com/nodejs/ncrypto/commit/0ba85e3c3a3cdd8abcab066b046bbb11c9136bc8))
10+
311
## [1.1.0](https://github.com/nodejs/ncrypto/compare/1.0.1...v1.1.0) (2026-01-31)
412

513

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.28)
2-
project(ncrypto VERSION 1.1.0) # x-release-please-version
2+
project(ncrypto VERSION 1.1.1) # x-release-please-version
33

44
include(CTest)
55
include(GNUInstallDirs)

include/ncrypto/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
#ifndef NCRYPTO_VERSION_H_
44
#define NCRYPTO_VERSION_H_
55

6-
#define NCRYPTO_VERSION "1.1.0" // x-release-please-version
6+
#define NCRYPTO_VERSION "1.1.1" // x-release-please-version
77

88
enum {
99
NCRYPTO_VERSION_MAJOR = 1, // x-release-please-major
1010
NCRYPTO_VERSION_MINOR = 1, // x-release-please-minor
11-
NCRYPTO_VERSION_REVISION = 0, // x-release-please-patch
11+
NCRYPTO_VERSION_REVISION = 1, // x-release-please-patch
1212
};
1313

1414
#endif // NCRYPTO_VERSION_H_

0 commit comments

Comments
 (0)