From 76ac391b9394b96d5ec62a9c0fc59dafad61de13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 13:05:20 +0000 Subject: [PATCH] chore(main): release 1.1.4 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ CMakeLists.txt | 2 +- include/ncrypto/version.h | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d719a72..1fb8c24 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.3" + ".": "1.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a6573e2..eed2fa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.4](https://github.com/nodejs/ncrypto/compare/v1.1.3...v1.1.4) (2026-03-23) + + +### Bug Fixes + +* handle reallocation failure gracefully in DataPointer::resize() ([#37](https://github.com/nodejs/ncrypto/issues/37)) ([944c570](https://github.com/nodejs/ncrypto/commit/944c57099055ccadd2f411b4415db78b9ecac262)) + ## [1.1.3](https://github.com/nodejs/ncrypto/compare/v1.1.2...v1.1.3) (2026-02-04) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1328ce5..e2e04e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.28) -project(ncrypto VERSION 1.1.3) # x-release-please-version +project(ncrypto VERSION 1.1.4) # x-release-please-version include(CTest) include(GNUInstallDirs) diff --git a/include/ncrypto/version.h b/include/ncrypto/version.h index b536c1d..dd645b8 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.3" // x-release-please-version +#define NCRYPTO_VERSION "1.1.4" // x-release-please-version enum { NCRYPTO_VERSION_MAJOR = 1, // x-release-please-major NCRYPTO_VERSION_MINOR = 1, // x-release-please-minor - NCRYPTO_VERSION_REVISION = 3, // x-release-please-patch + NCRYPTO_VERSION_REVISION = 4, // x-release-please-patch }; #endif // NCRYPTO_VERSION_H_