Skip to content

Commit

Permalink
Merge #635
Browse files Browse the repository at this point in the history
635: release 0.8.0 r=jordens a=jordens

* [x] waiting for the HAL 0.13.1 release

Co-authored-by: Robert Jördens <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 7, 2022
2 parents a555e95 + 261ae93 commit 5e6aee8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ 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/).

## Unreleased
## [v0.8.0](https://github.com/quartiq/stabilizer/compare/v0.7.0...v0.8.0) - 2022-11-07

* MSRV bumped to 1.63 (`array_from_fn` via `enum_iterator`)
* [breaking] MSRV bumped to 1.63 (`array_from_fn` via `enum_iterator`)
* [breaking] Bumped dependencies on `miniconf`, `minimq` leading to changes in the `Miniconf` settings API
* Bumped HAL dependency to fix a crucial I2C bug
* Added gain limits for `iir_coefficients`
* Added a IIR transfer function plotting tool
* Fixed a bug in the Python telemetry client that led to no data being returned
* EEM Gpio pins are now available from `setup()`
* Added white noise output to `signal_generator`

## [v0.7.0] - 2022-08-10

Expand Down Expand Up @@ -137,7 +144,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

* First bits of code published

[Unreleased]: https://github.com/quartiq/stabilizer/compare/v0.7.0...HEAD
[v0.7.0]: https://github.com/quartiq/stabilizer/compare/v0.6.0...v0.7.0
[v0.6.0]: https://github.com/quartiq/stabilizer/compare/v0.5.0...v0.6.0
[v0.5.0]: https://github.com/quartiq/stabilizer/compare/v0.4.1...v0.5.0
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stabilizer"
# Keep versions in Cargo.toml and py/setup.py synchronized.
version = "0.7.0"
version = "0.8.0"
resolver = "2"
authors = [
"Robert Jördens <[email protected]>",
Expand Down Expand Up @@ -65,7 +65,7 @@ rand_core = "0.6.4"

[dependencies.stm32h7xx-hal]
features = ["stm32h743v", "rt", "ethernet", "xspi"]
version = "0.13.0"
version = "0.13.1"

[features]
nightly = [ ]
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(name="stabilizer",
packages=find_packages(),
# Keep versions in Cargo.toml and py/setup.py synchronized.
version="0.7.0",
version="0.8.0",
description="Stabilizer Utilities",
author="QUARTIQ GmbH",
license="MIT",
Expand Down

0 comments on commit 5e6aee8

Please sign in to comment.