From 1bc4eb06a2c6a9403ef0af96ab6c151154e09ef3 Mon Sep 17 00:00:00 2001 From: Paul Colby Date: Sun, 7 May 2023 18:55:02 +1000 Subject: [PATCH] Release version 0.2.0 Added - Temperature support for logger modes. - Localisation for en_AU, en_GB and en_US (Qt6 only for now). - Very early GUI app prototype. Changed - Renamed the project to `Dokit` (the shared library is still `QtPokit`). --- CHANGELOG.md | 7 ++++--- CMakeLists.txt | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f5d066a7..4dcdcba14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog[^1] -## [Unreleased][] +## [0.2.0][] (2023-05-07) ### Added - Temperature support for logger modes. -- Localisation for en_AU, en_GB and en_US. +- Localisation for en_AU, en_GB and en_US (Qt6 only for now). - Very early GUI app prototype. ### Changed @@ -48,7 +48,8 @@ Thanks to [@lnxsr](https://github.com/lnxsr) for contributing to this release. - Support for Linux, macOS and Windows. - Support for [Qt][] 5.4+ and 6.2+ -[Unreleased]: https://github.com/pcolby/dokit/compare/v0.1.2...HEAD +[Unreleased]: https://github.com/pcolby/dokit/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/pcolby/dokit/releases/tag/v0.2.0 [0.1.2]: https://github.com/pcolby/dokit/releases/tag/v0.1.2 [0.1.1]: https://github.com/pcolby/dokit/releases/tag/v0.1.1 [0.1.0]: https://github.com/pcolby/dokit/releases/tag/v0.1.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 0739490ff..7c9f7138a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,11 +12,11 @@ set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) -project(Dokit VERSION 0.1.3 LANGUAGES CXX) +project(Dokit VERSION 0.2.0 LANGUAGES CXX) -set(PROJECT_PRE_RELEASE pre) +#set(PROJECT_PRE_RELEASE pre) #set(PROJECT_PRE_RELEASE rc1) -#unset(PROJECT_PRE_RELEASE) +unset(PROJECT_PRE_RELEASE) if (PROJECT_PRE_RELEASE) add_definitions(-DPROJECT_PRE_RELEASE="${PROJECT_PRE_RELEASE}") set(PROJECT_VERSION_SUFFIX "-${PROJECT_PRE_RELEASE}")