Skip to content

Commit

Permalink
Merge pull request #979 from quartiq/release-0.11
Browse files Browse the repository at this point in the history
release 0.11
  • Loading branch information
jordens authored Dec 2, 2024
2 parents d40c59d + 89d3d32 commit 15bb281
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 12 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@ 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.11.0](https://github.com/quartiq/stabilizer/compare/v0.10.0...v0.11.0) - 2024-12-02

### Added

* Support for Urukul-AD9912 as a downstream EEM

### Changed

* Various dependencies bumped (among them Miniconf v0.13 -> v0.18)

## [v0.10.0](https://github.com/quartiq/stabilizer/compare/v0.9.0...v0.10.0)

### Added

* Serial terminal is available on USB for settings configurations
* Reboot to DFU support added via the serial terminal for remote bootloading
* The `meta` topic now contains metadata about the compiler, firmware, and hardware similar to
Expand All @@ -19,6 +30,7 @@ console.
unified for all applications (i.e. lockin, dual-iir, etc.)

### Changed

* Broker and static IP/DHCP are no longer configured at compile time,
but is maintained in device flash and can be changed via the USB port.
* MSRV removed. Stabilizer uses latest stable rust.
Expand All @@ -27,6 +39,7 @@ console.
* The stream target is now configures as a `1.2.3.4:4321` string

### Fixed

* Fixed an issue where the device would sometimes not enumerate on Windows

## [v0.9.0](https://github.com/quartiq/stabilizer/compare/v0.8.1...v0.9.0)
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 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.10.0"
version = "0.11.0"
resolver = "2"
authors = [
"Robert Jördens <[email protected]>",
Expand Down Expand Up @@ -52,7 +52,7 @@ num_enum = { version = "0.7.3", default-features = false }
paste = "1"
idsp = "0.15.1"
ad9959 = { path = "ad9959", version = "0.3.0" }
serial-settings = { version = "0.1", path = "serial-settings" }
serial-settings = { version = "0.2", path = "serial-settings" }
mcp230xx = "1.0"
mutex-trait = "0.2"
fugit = "0.3"
Expand Down Expand Up @@ -88,8 +88,8 @@ embedded-hal-02 = { package = "embedded-hal", version = "0.2.7", features = [
] }
embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
embedded-hal-bus = "0.2.0"
urukul = { version = "0.1", path = "urukul" }
ad9912 = { version = "0.1", path = "ad9912" }
urukul = { version = "0.1.1", path = "urukul" }
ad9912 = { version = "0.1.1", path = "ad9912" }

[build-dependencies]
built = { version = "0.7", features = ["git2"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion ad9912/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ad9912"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "AD9912 1 GHz DDS SPI driver"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion serial-settings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serial-settings"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
readme = "README.md"
description = "Embedded device settings management over serial terminal and flash"
Expand Down
4 changes: 2 additions & 2 deletions urukul/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "urukul"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Sinara Urukul quad 1 GHz DDS driver"
authors = [
Expand All @@ -19,6 +19,6 @@ num-traits = { version = "0.2.19", default-features = false }
embedded-hal = { version = "1.0" }
embedded-hal-bus = "0.2.0"
bitbybit = "1.3.2"
ad9912 = { version = "0.1", path = "../ad9912" }
ad9912 = { version = "0.1.1", path = "../ad9912" }
log = "0.4"
serde = { version = "1.0", features = ["derive"], default-features = false }

0 comments on commit 15bb281

Please sign in to comment.