From d4259c009b3ca1169dfd19231a040c233fc3b58d Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Wed, 13 Jul 2022 17:20:04 +0200 Subject: [PATCH] Release 1.90.0 with larger refactorings The version number has been bumped to be able to maintain multiple branches without conflict. This version bump is not associated with a API/ABI break. --- NEWS | 18 ++++++++++++++++++ meson.build | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ffd2dc6..f8feba6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +Version 1.90.0 +-------------- +Released: 2022-07-21 + +Note that the version number bump was made to allow bugfixes for older +releases while also making new releases that contain with more in-depth +code changes. The old (soft) API/ABI guarantees are currently unchanged. + +Changes: +- Refactor internal battery handling into separate classes +- Guess charging/discharging state based on energy rate (#196) + +Bug fixes: +- Fix polling after resume (#198) +- Fix battery state guessing (#146) +- Reload history when battery ID changes +- Test fixes + Version 0.99.19 --------------- Released: 2022-06-08 diff --git a/meson.build b/meson.build index 055c658..96a0a8c 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('upower', 'c', - version: '0.99.19', + version: '1.90.0', license: 'GPLv2+', default_options: [ 'buildtype=debugoptimized',