diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b895b0b..702946f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.1.2" + ".": "3.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 88971cb..c2fa22b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [3.2.0](https://github.com/embedded-pro/numerical-toolbox-cpp/compare/v3.1.2...v3.2.0) (2026-09-16) + + +### Features + +* Add SetPreviousOutput to PidIncrementalBase ([#328](https://github.com/embedded-pro/numerical-toolbox-cpp/issues/328)) ([762b59e](https://github.com/embedded-pro/numerical-toolbox-cpp/commit/762b59ef15ea7d54bd6b703ff4bd75b25ae0c99f)) + + +### Build System + +* **deps:** Bump the patch-minor-action-updates group with 2 updates ([#330](https://github.com/embedded-pro/numerical-toolbox-cpp/issues/330)) ([7d1e7de](https://github.com/embedded-pro/numerical-toolbox-cpp/commit/7d1e7de61371043eb4783834413855710292dd29)) +* **deps:** Bump the patch-minor-action-updates group with 3 updates ([#326](https://github.com/embedded-pro/numerical-toolbox-cpp/issues/326)) ([c580f38](https://github.com/embedded-pro/numerical-toolbox-cpp/commit/c580f38ccc835c0b8cd2286f3e1d9c3d99b713cd)) + ## [3.1.2](https://github.com/embedded-pro/numerical-toolbox-cpp/compare/v3.1.1...v3.1.2) (2026-09-05) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7433ad..5995b18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ if (NUMERICAL_TOOLBOX_STANDALONE) FetchContent_MakeAvailable(emil) endif() -project(numerical-toolbox LANGUAGES C CXX ASM VERSION 3.1.2) # x-release-please-version +project(numerical-toolbox LANGUAGES C CXX ASM VERSION 3.2.0) # x-release-please-version set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED On)