Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.0.1"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## 1.0.1 (2026-02-02)


### Bug Fixes

* header file name ([#6](https://github.com/nodejs/merve/issues/6)) ([d499aa9](https://github.com/nodejs/merve/commit/d499aa984deebff754bf4ed09ac89aeebadcdcaa))


## 1.0.0 (2026-01-28)

Initial release.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.16)
project(merve
DESCRIPTION "Fast lexer to extract named exports via analysis from CommonJS modules"
LANGUAGES C CXX
VERSION 1.0.0 # x-release-please-version
VERSION 1.0.1 # x-release-please-version
)

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

include(GNUInstallDirs)
Expand Down
4 changes: 2 additions & 2 deletions include/merve/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
#ifndef MERVE_VERSION_H
#define MERVE_VERSION_H

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

namespace lexer {

enum {
MERVE_VERSION_MAJOR = 1, // x-release-please-major
MERVE_VERSION_MINOR = 0, // x-release-please-minor
MERVE_VERSION_REVISION = 0, // x-release-please-patch
MERVE_VERSION_REVISION = 1, // x-release-please-patch
};

} // namespace lexer
Expand Down
Loading