From ac588f25a2170dd2e5b2d21bdad4c28dabdc70fd Mon Sep 17 00:00:00 2001 From: Pascal Sachs Date: Mon, 13 Jul 2026 14:15:30 +0200 Subject: [PATCH] Prepare for 2.0.0 Release Update version and changelog --- CHANGELOG.md | 14 +++++++++++--- pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e04e42..4f29050 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.0] - 2026-7-13 + +### Added - Add SHDLC commands: User Data (0x21), Device Selftest (0x22), Sensor Voltage (0x23), Measure Sensor Voltage (0x26) - Add interface for totalizer + +### Changed +- Improve usage examples - Ensure linux file endings across the package -- Fix several typos - Update GitHub actions to the latest versions - Update dependencies -- Improve usage examples + +### Fixed +- Fix several typos ## [1.1.1] - 2024-4-10 @@ -33,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Provide initial version of this repository containing a driver for the Sensirion SCC1-USB cable. -[Unreleased]: https://github.com/Sensirion/python-uart-scc1/compare/1.1.0...HEAD +[Unreleased]: https://github.com/Sensirion/python-uart-scc1/compare/2.0.0...HEAD +[2.0.0]: https://github.com/Sensirion/python-uart-scc1/compare/1.1.0...2.0.0 [1.1.0]: https://github.com/Sensirion/python-uart-scc1/compare/1.0.0...1.1.0 [1.0.0]: https://github.com/Sensirion/python-uart-scc1/releases/tag/1.0.0 diff --git a/pyproject.toml b/pyproject.toml index 64748cf..c38dc21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sensirion-uart-scc1" -version = "1.1.1" +version = "2.0.0" description = "Driver for Sensirion SCC1 USB cable" authors = ["Pascal Sachs"] license = "BSD-3-Clause"