Skip to content

Commit

Permalink
Release version 0.2.0
Browse files Browse the repository at this point in the history
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`).
  • Loading branch information
pcolby committed May 7, 2023
1 parent 619ad18 commit 1bc4eb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down

0 comments on commit 1bc4eb0

Please sign in to comment.