diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ada87e4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ + +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [2.1.0] - 2025-05-19 + +### Changed + +- Use DBus, allow to change the browser's URL + +## [2.0.0] - 2024-10-14 + +### Added + +- Initial release of the QT6 browser diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e4c3b3d..8935f7a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -17,12 +17,12 @@ endif() if (NOT DEFINED CPACK_PACKAGE_VERSION_MINOR) - set(CPACK_PACKAGE_VERSION_MINOR "0") + set(CPACK_PACKAGE_VERSION_MINOR "1") endif() if (NOT DEFINED CPACK_PACKAGE_VERSION_PATCH) - set(CPACK_PACKAGE_VERSION_PATCH "1") + set(CPACK_PACKAGE_VERSION_PATCH "0") endif()