diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 53b7bc9..d719a72 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.2" + ".": "1.1.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c477de..a6573e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.1.3](https://github.com/nodejs/ncrypto/compare/v1.1.2...v1.1.3) (2026-02-04) + + +### Bug Fixes + +* unconditionally include vector ([ba39e40](https://github.com/nodejs/ncrypto/commit/ba39e40ed1c1231902a676f53906cdd2f6119648)) +* use more strict compiler flags ([fc401e3](https://github.com/nodejs/ncrypto/commit/fc401e387491005bfbe6c48b7296862d07ea85d7)) + ## [1.1.2](https://github.com/nodejs/ncrypto/compare/v1.1.1...v1.1.2) (2026-02-02) diff --git a/CMakeLists.txt b/CMakeLists.txt index e67573f..1328ce5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.28) -project(ncrypto VERSION 1.1.2) # x-release-please-version +project(ncrypto VERSION 1.1.3) # x-release-please-version include(CTest) include(GNUInstallDirs) diff --git a/include/ncrypto/version.h b/include/ncrypto/version.h index fb2d463..b536c1d 100644 --- a/include/ncrypto/version.h +++ b/include/ncrypto/version.h @@ -3,12 +3,12 @@ #ifndef NCRYPTO_VERSION_H_ #define NCRYPTO_VERSION_H_ -#define NCRYPTO_VERSION "1.1.2" // x-release-please-version +#define NCRYPTO_VERSION "1.1.3" // x-release-please-version enum { NCRYPTO_VERSION_MAJOR = 1, // x-release-please-major NCRYPTO_VERSION_MINOR = 1, // x-release-please-minor - NCRYPTO_VERSION_REVISION = 2, // x-release-please-patch + NCRYPTO_VERSION_REVISION = 3, // x-release-please-patch }; #endif // NCRYPTO_VERSION_H_