From dafaa517f9f9f0ce28797a249e9a941754c53d8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Mon, 14 Nov 2022 11:25:44 +0000 Subject: [PATCH 1/2] release v0.8.1 --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- py/setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3079a3b95..d87ffc7fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [v0.8.1](https://github.com/quartiq/stabilizer/compare/v0.7.0...v0.8.0) - 2022-11-14) + +* Fixed the python package dependencies + ## [v0.8.0](https://github.com/quartiq/stabilizer/compare/v0.7.0...v0.8.0) - 2022-11-07 * [breaking] MSRV bumped to 1.63 (`array_from_fn` via `enum_iterator`) diff --git a/Cargo.lock b/Cargo.lock index e7d213c31..033cb6eef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -891,7 +891,7 @@ dependencies = [ [[package]] name = "stabilizer" -version = "0.8.0" +version = "0.8.1" dependencies = [ "ad9959", "cortex-m 0.7.6", diff --git a/Cargo.toml b/Cargo.toml index ec0d5007b..cd5a25c14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "stabilizer" # Keep versions in Cargo.toml and py/setup.py synchronized. -version = "0.8.0" +version = "0.8.1" resolver = "2" authors = [ "Robert Jördens ", diff --git a/py/setup.py b/py/setup.py index d3e9c104a..0a10568af 100644 --- a/py/setup.py +++ b/py/setup.py @@ -4,7 +4,7 @@ name="stabilizer", packages=find_packages(), # Keep versions in Cargo.toml and py/setup.py synchronized. - version="0.8.0", + version="0.8.1", description="Stabilizer Utilities", author="QUARTIQ GmbH", license="MIT", From 14076a3ac0ef1aac0861ccd010272c015fbd3378 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20J=C3=B6rdens?= Date: Mon, 14 Nov 2022 12:01:55 +0000 Subject: [PATCH 2/2] update diff link --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d87ffc7fc..f8d9468e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [v0.8.1](https://github.com/quartiq/stabilizer/compare/v0.7.0...v0.8.0) - 2022-11-14) +## [v0.8.1](https://github.com/quartiq/stabilizer/compare/v0.8.0...v0.8.1) - 2022-11-14) * Fixed the python package dependencies