Skip to content

Commit

Permalink
Merge pull request #318 from quartiq/release/0.5.0
Browse files Browse the repository at this point in the history
Release/0.5.0
  • Loading branch information
ryan-summers authored Jul 3, 2023
2 parents cb29a4a + a045997 commit ad1817d
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.5.0] - 03-07-2023

### Added
* Support for different ethernet daughterboards using the ENC424J00 has been added.
Expand Down Expand Up @@ -63,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* Output interlock threshold is now limited to a maximum of 47 dBm

[Unreleased]: https://github.com/quartiq/booster/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/quartiq/booster/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/quartiq/booster/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/quartiq/booster/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/quartiq/booster/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/quartiq/booster/compare/v0.1.0...v0.2.0
Expand Down
5 changes: 3 additions & 2 deletions Cargo.lock

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

16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "booster"
# Keep versions in Cargo.toml and py/setup.py synchronized.
version = "0.3.0"
version = "0.5.0"
resolver = "2"
authors = [
"Ryan Summers <[email protected]>",
Expand Down Expand Up @@ -52,6 +52,7 @@ smlang= "0.6"
minireq = "0.2"
rtt-target = {version = "0.3", features=["cortex-m"]}
enum-iterator = { version = "1.4", default-features = false }
enc424j600 = { version = "0.3", features = ["cortex-m-cpu"] }
smoltcp-nal = { version = "0.3", features=["shared-stack"] }

[build-dependencies]
Expand All @@ -61,34 +62,37 @@ built = { version = "0.6", features = ["git2"], default-features = false }
version = "0.16"
features = ["stm32f407", "rt", "usb_fs"]

[dependencies.enc424j600]
git = "https://git.m-labs.hk/M-Labs/ENC424J600.git"
rev = "fbcc3778d27cfbeec7a1395c9b13a00c8a26af9a"
features = [ "cortex-m-cpu" ]

[dependencies.ad5627]
path = "ad5627"
version = "0.1"

[dependencies.ads7924]
path = "ads7924"
version = "0.1"

[dependencies.dac7571]
path = "dac7571"
version = "0.1"

[dependencies.max6639]
path = "max6639"
version = "0.1"

[dependencies.max6642]
path = "max6642"
version = "0.1"

[dependencies.mcp3221]
path = "mcp3221"
version = "0.1"

[dependencies.microchip-24aa02e48]
path = "microchip-24aa02e48"
version = "0.1"

[dependencies.tca9548]
path = "tca9548"
version = "0.1"

[profile.dev]
# Note: Opt-level 1 is required to avoid issues with stack overflow during hardware configuration.
Expand Down
3 changes: 3 additions & 0 deletions ad5627/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "ad5627"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the AD5627 2-channel digital-to-analog converter (DAC)"
license = "MIT or APACHE-2"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions ads7924/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "ads7924"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the ADS7924 external analog-to-digital converter (ADC)"
license = "MIT or APACHE-2"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions dac7571/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "dac7571"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the DAC7571 external digital-to-analog converter (DAC)"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions max6639/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "max6639"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the MAX6639 fan speed controller"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions max6642/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "max6642"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the MAX6642 temperature sensor"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions mcp3221/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "mcp3221"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the MCP3221 external analog-to-digital converter (ADC)"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions microchip-24aa02e48/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "microchip-24aa02e48"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the Microchip 24AA02E48 EEPROM with EUI-48"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
3 changes: 3 additions & 0 deletions tca9548/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name = "tca9548"
version = "0.1.0"
authors = ["Ryan Summers <[email protected]>"]
edition = "2018"
description = "no_std driver for the TCA9548 I2C bus multiplexer"
license = "MIT OR Apache-2.0"
repository = "https://github.com/quartiq/booster/"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit ad1817d

Please sign in to comment.