File tree Expand file tree Collapse file tree 5 files changed +21
-7
lines changed
Expand file tree Collapse file tree 5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 1.0.1 "
2+ "." : " 1.1.0 "
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.1.0] ( https://github.com/nodejs/merve/compare/v1.0.1...v1.1.0 ) (2026-02-25)
4+
5+
6+ ### Features
7+
8+ * add C API ([ #12 ] ( https://github.com/nodejs/merve/issues/12 ) ) ([ db663af] ( https://github.com/nodejs/merve/commit/db663af49b6c196003b455776fcd71183353ef14 ) )
9+ * add rust crate ([ c964cd5] ( https://github.com/nodejs/merve/commit/c964cd5461709fc01a397c3a5febad25422768ff ) )
10+
11+
12+ ### Bug Fixes
13+
14+ * simplify things in rust crate ([ f4e857e] ( https://github.com/nodejs/merve/commit/f4e857e7d74ded0437b696e776ac8ef12554b483 ) )
15+ * use thread_local last error tracking ([ f529e8b] ( https://github.com/nodejs/merve/commit/f529e8b7406fb892bd842eb3ca13ea946b3e5f9a ) )
16+
317## 1.0.1 (2026-02-02)
418
519
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ cmake_minimum_required(VERSION 3.16)
33project (merve
44 DESCRIPTION "Fast lexer to extract named exports via analysis from CommonJS modules"
55 LANGUAGES C CXX
6- VERSION 1.0.1 # x-release-please-version
6+ VERSION 1.1.0 # x-release-please-version
77)
88
9- set (MERVE_LIB_VERSION "1.0.1 " CACHE STRING "lexer library version" ) # x-release-please-version
9+ set (MERVE_LIB_VERSION "1.1.0 " CACHE STRING "lexer library version" ) # x-release-please-version
1010set (MERVE_LIB_SOVERSION "1" CACHE STRING "lexer library soversion" ) # x-release-please-major
1111
1212include (GNUInstallDirs )
Original file line number Diff line number Diff line change 55#ifndef MERVE_VERSION_H
66#define MERVE_VERSION_H
77
8- #define MERVE_VERSION " 1.0.1 " // x-release-please-version
8+ #define MERVE_VERSION " 1.1.0 " // x-release-please-version
99
1010namespace lexer {
1111
1212enum {
1313 MERVE_VERSION_MAJOR = 1 , // x-release-please-major
14- MERVE_VERSION_MINOR = 0 , // x-release-please-minor
15- MERVE_VERSION_REVISION = 1 , // x-release-please-patch
14+ MERVE_VERSION_MINOR = 1 , // x-release-please-minor
15+ MERVE_VERSION_REVISION = 0 , // x-release-please-patch
1616};
1717
1818} // namespace lexer
Original file line number Diff line number Diff line change 11[package ]
22name = " merve"
3- version = " 1.0.1 " # x-release-please-version
3+ version = " 1.1.0 " # x-release-please-version
44edition = " 2024"
55rust-version = " 1.85"
66authors = [" Yagiz Nizipli <yagiz@nizipli.com>" ]
You can’t perform that action at this time.
0 commit comments