Skip to content

Commit a9a8c1d

Browse files
chore(main): release 1.0.1 (#8)
1 parent ac23385 commit a9a8c1d

4 files changed

Lines changed: 18 additions & 5 deletions

File tree

.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.0.0"
2+
".": "1.0.1"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## 1.0.1 (2026-02-02)
4+
5+
6+
### Bug Fixes
7+
8+
* header file name ([#6](https://github.com/nodejs/merve/issues/6)) ([d499aa9](https://github.com/nodejs/merve/commit/d499aa984deebff754bf4ed09ac89aeebadcdcaa))
9+
10+
11+
## 1.0.0 (2026-01-28)
12+
13+
Initial release.

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.16)
33
project(merve
44
DESCRIPTION "Fast lexer to extract named exports via analysis from CommonJS modules"
55
LANGUAGES C CXX
6-
VERSION 1.0.0 # x-release-please-version
6+
VERSION 1.0.1 # x-release-please-version
77
)
88

9-
set(MERVE_LIB_VERSION "1.0.0" CACHE STRING "lexer library version") # x-release-please-version
9+
set(MERVE_LIB_VERSION "1.0.1" CACHE STRING "lexer library version") # x-release-please-version
1010
set(MERVE_LIB_SOVERSION "1" CACHE STRING "lexer library soversion") # x-release-please-major
1111

1212
include(GNUInstallDirs)

include/merve/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
#ifndef MERVE_VERSION_H
66
#define MERVE_VERSION_H
77

8-
#define MERVE_VERSION "1.0.0" // x-release-please-version
8+
#define MERVE_VERSION "1.0.1" // x-release-please-version
99

1010
namespace lexer {
1111

1212
enum {
1313
MERVE_VERSION_MAJOR = 1, // x-release-please-major
1414
MERVE_VERSION_MINOR = 0, // x-release-please-minor
15-
MERVE_VERSION_REVISION = 0, // x-release-please-patch
15+
MERVE_VERSION_REVISION = 1, // x-release-please-patch
1616
};
1717

1818
} // namespace lexer

0 commit comments

Comments
 (0)