Skip to content

Commit 3e858fd

Browse files
chore(main): release 0.1.4 (#16)
1 parent e1c6be3 commit 3e858fd

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-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-
".": "0.1.3"
2+
".": "0.1.4"
33
}

CHANGELOG.md

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

3+
## [0.1.4](https://github.com/nodejs/nbytes/compare/v0.1.3...v0.1.4) (2026-04-09)
4+
5+
6+
### Bug Fixes
7+
8+
* **build:** add `NBYTES_ENABLE_TESTING` CMake option ([#15](https://github.com/nodejs/nbytes/issues/15)) ([e1c6be3](https://github.com/nodejs/nbytes/commit/e1c6be3ed112f2375207c7626e10961e92d3f69f))
9+
310
## [0.1.3](https://github.com/nodejs/nbytes/compare/v0.1.2...v0.1.3) (2026-02-18)
411

512

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(nbytes VERSION 0.1.3) # x-release-please-version
2+
project(nbytes VERSION 0.1.4) # x-release-please-version
33

44
set(CMAKE_CXX_STANDARD 20)
55
set(CMAKE_CXX_STANDARD_REQUIRED True)

include/nbytes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -836,12 +836,12 @@ size_t SearchString(const char *haystack, size_t haystack_length,
836836

837837
// ============================================================================
838838
// Version metadata
839-
#define NBYTES_VERSION "0.1.3" // x-release-please-version
839+
#define NBYTES_VERSION "0.1.4" // x-release-please-version
840840

841841
enum {
842842
NBYTES_VERSION_MAJOR = 0, // x-release-please-major
843843
NBYTES_VERSION_MINOR = 1, // x-release-please-minor
844-
NBYTES_VERSION_REVISION = 3, // x-release-please-patch
844+
NBYTES_VERSION_REVISION = 4, // x-release-please-patch
845845
};
846846

847847
} // namespace nbytes

0 commit comments

Comments
 (0)