Skip to content

Commit 004047d

Browse files
committed
Bump version ready for release
1 parent 2691aff commit 004047d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [staging]
6+
7+
8+
9+
## [0.1.2] - 2026-03-19
610
### Added
711
- REAPER ExtState API bindings (`SetExtState`, `GetExtState`, `HasExtState`, `DeleteExtState`).
812
- Go integration test suite (`tests/integration/reaserve_test.go`) that exercises every method in PROTOCOL.md against a live REAPER instance. Uses `//go:build integration` tag so it is never picked up by normal `go test` runs.
@@ -13,8 +17,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1317
- User Lua code in `lua.execute_and_read` is now wrapped in `pcall()` — Lua runtime errors are captured and returned in the JSON-RPC error response instead of being silently swallowed.
1418
- Updated PROTOCOL.md to reflect new `lua.execute_and_read` interface and document `reaserve_output()`.
1519

16-
17-
1820
## [0.1.1] - 2026-03-17
1921
### Fixed
2022
- Fix REAPER hanging on exit due to client TCP sockets not being shut down during server stop, causing blocking `recv()` calls in client threads to never return

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.15)
2-
project(reaserve VERSION 0.1.1 LANGUAGES CXX)
2+
project(reaserve VERSION 0.1.2 LANGUAGES CXX)
33

44
set(CMAKE_CXX_STANDARD 17)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)

0 commit comments

Comments
 (0)