Skip to content
Open
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
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.15)
cmake_minimum_required(VERSION 3.17)

cmake_policy(SET CMP0074 NEW)

set(ROTOR_VERSION "0.36")
set(ROTOR_VERSION "0.37")
project (rotor LANGUAGES CXX VERSION ${ROTOR_VERSION})
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Modules/")
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ project.

## Changelog

### 0.37 (xx-xxx-202x)
- [cmake, breaking] increase cmake version requirement `3.15` -> `3.17`
- [cmake] generate file for clangd langserv (thanks for @rymdbar)
- [cosmetic] removed trailing spaces (thanks for @rymdbar)
- [cosmetic] fixed identation to make sources more vim-folding friendly (thanks for @rymdbar)
- [cosmetic] configure linters to project style (thanks for @rymdbar)

### 0.36 (14-Oct-2025)
- [feature] add `route()` and `redirect()` high-level actor methods, which
provide convenient API over `make_routed_message()` introduced in `v0.32`
Expand Down