Skip to content

Commit 62d9809

Browse files
chore(main): release 1.2.0 (#38)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1b517e9 commit 62d9809

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
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-
".": "1.1.3"
2+
".": "1.2.0"
33
}

CHANGELOG.md

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

3+
## [1.2.0](https://github.com/nodejs/merve/compare/v1.1.3...v1.2.0) (2026-03-05)
4+
5+
6+
### Features
7+
8+
* add optional parse error locations ([#34](https://github.com/nodejs/merve/issues/34)) ([1b517e9](https://github.com/nodejs/merve/commit/1b517e971ecf2ea43d8c619a6637c4eea4494714))
9+
10+
11+
### Bug Fixes
12+
13+
* don't bail on shorthand 'get' in literal exports ([#37](https://github.com/nodejs/merve/issues/37)) ([48bbbbf](https://github.com/nodejs/merve/commit/48bbbbf0be191fa2c02d284e71833088c1531521))
14+
315
## [1.1.3](https://github.com/nodejs/merve/compare/v1.1.2...v1.1.3) (2026-02-27)
416

517

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.1.3 # x-release-please-version
6+
VERSION 1.2.0 # x-release-please-version
77
)
88

9-
set(MERVE_LIB_VERSION "1.1.3" CACHE STRING "lexer library version") # x-release-please-version
9+
set(MERVE_LIB_VERSION "1.2.0" 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: 3 additions & 3 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.1.3" // x-release-please-version
8+
#define MERVE_VERSION "1.2.0" // x-release-please-version
99

1010
namespace lexer {
1111

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

1818
} // namespace lexer

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "merve"
3-
version = "1.1.3" # x-release-please-version
3+
version = "1.2.0" # x-release-please-version
44
edition = "2024"
55
rust-version = "1.85"
66
authors = ["Yagiz Nizipli <yagiz@nizipli.com>"]

0 commit comments

Comments
 (0)