Skip to content

Commit 1a62f8e

Browse files
chore(main): release 0.1.3 (#13)
1 parent 8011baf commit 1a62f8e

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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.1.3](https://github.com/nodejs/nbytes/compare/v0.1.2...v0.1.3) (2026-02-18)
4+
5+
6+
### Bug Fixes
7+
8+
* use arithmetic HexEncode instead of lookups ([#12](https://github.com/nodejs/nbytes/issues/12)) ([8011baf](https://github.com/nodejs/nbytes/commit/8011baff1dfecf48b5feca21cb29b72e3562c919))

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.2) # x-release-please-version
2+
project(nbytes VERSION 0.1.3) # 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.2" // x-release-please-version
839+
#define NBYTES_VERSION "0.1.3" // 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 = 2, // x-release-please-patch
844+
NBYTES_VERSION_REVISION = 3, // x-release-please-patch
845845
};
846846

847847
} // namespace nbytes

0 commit comments

Comments
 (0)