Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
Added
- Support [Pokit Pro] charging status (not documented by Pokit).
- Support [Pokit Pro] physical button(not documented by Pokit).
- Support [Pokit Pro] physical mode switch position (not documented by Pokit).
- Support [Pokit Pro] serial numbers (not documented by Pokit).
- Support [Pokit Pro] torch (not documented by Pokit).
- Additional debug logging to detect undocumented BLE characteristics.

Changed:
- Upgrade to Qt 6.5.1.
  • Loading branch information
pcolby committed Jun 3, 2023
1 parent 474e64e commit 914b12c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog[^1]

## [Unreleased][]
## [0.4.0][] (2023-06-03)

### Added

- Support [Pokit Pro] charging status (not documented by Pokit).
- Support [Pokit Pro] physical button(not documented by Pokit).
- Support [Pokit Pro] physical mode switch position (not documented by Pokit).
- Support [Pokit Pro] serial numbers (not documented by Pokit).
- Support [Pokit Pro] torch (not documented by Pokit).
Expand Down Expand Up @@ -79,7 +80,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.3.0...HEAD
[Unreleased]: https://github.com/pcolby/dokit/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/pcolby/dokit/releases/tag/v0.4.0
[0.3.0]: https://github.com/pcolby/dokit/releases/tag/v0.3.0
[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
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

project(Dokit VERSION 0.3.1 LANGUAGES CXX)
project(Dokit VERSION 0.4.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 914b12c

Please sign in to comment.