diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3f1463..96f1cd9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad43fd..1181388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.3.0](https://github.com/philips-software/amp-preview/compare/v1.2.0...v1.3.0) (2026-02-23) + + +### Features + +* Replace infra::Variant with std::variant ([#289](https://github.com/philips-software/amp-preview/issues/289)) ([f48b5d4](https://github.com/philips-software/amp-preview/commit/f48b5d47dede75cfdffb6e720a2c56257b8f15c4)) +* Update to remove infra optional ([#260](https://github.com/philips-software/amp-preview/issues/260)) ([793f904](https://github.com/philips-software/amp-preview/commit/793f904fd603e79ea5020f47520316f080d4f01f)) + ## [1.2.0](https://github.com/philips-software/amp-preview/compare/v1.1.0...v1.2.0) (2025-01-16) diff --git a/CMakeLists.txt b/CMakeLists.txt index 45e1913..3e0af52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ if (PREVIEW_STANDALONE) endif() endif() -project(preview LANGUAGES C CXX VERSION 1.2.0) # x-release-please-version +project(preview LANGUAGES C CXX VERSION 1.3.0) # x-release-please-version set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED On)