From 9338f8a488b7c0371f50bb5864964cdb35ce4353 Mon Sep 17 00:00:00 2001 From: Marcin Szymczyk Date: Tue, 11 Jul 2023 16:34:05 +0200 Subject: [PATCH] doc: add release notes for v0.7.0 and bump release version Signed-off-by: Marcin Szymczyk --- doc/conf.py | 2 +- doc/release_notes.rst | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 5ebd417c..8ee880b3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -40,7 +40,7 @@ project = 'npmx-zephyr' copyright = '2023, Nordic Semiconductor' author = 'Nordic Semiconductor' -version = release = "0.6.0" +version = release = "0.7.0" sys.path.insert(0, str(NPMX_ZEPHYR_BASE / "doc" / "_extensions")) diff --git a/doc/release_notes.rst b/doc/release_notes.rst index 82f2ace4..c84cc605 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -5,6 +5,39 @@ Release notes See the release notes for the information about specific npmx-zephyr releases. +[0.7.0] - 12/07/2023 +--------------------- + +Added +~~~~~ + +- Added the fuel gauge sample. +- Added support for nrfxlib. +- Added shell commands: + - `npmx buck status power get` + - `npmx buck mode` + - `npmx charger module ntc set` + - `npmx charger module ntc get` + - `npmx reset` + +Changed +~~~~~~~ + +- Updated the npmx version to 0.7.0. +- Aligned samples and shell to the following changes: + - A new format for convert functions + - `npmx_adc_meas_get()` API + - A new backend handling method +- Removed all unused symbols. +- Added checking for a charger status when setting NTC with the `npmx adc ntc set` shell command. + +Fixed +~~~~~ + +- Fixed documentation building by removing the path dependency. +- Fixed shell commands to prevent accepting invalid inputs. +- Minor fixes and improvements in documentation. + [0.6.0] - 22/06/2023 ---------------------