Prepare for 0.6.0 release

This commit is contained in:
Michael Watzko 2025-03-21 15:59:25 +01:00
commit 04ec37adea
2 changed files with 5 additions and 2 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.6.0] - March 21st, 2025
- [breaking] The driver now uses v0.9 of embedded-nal [@reitermarkus](https://github.com/reitermarkus) ([#66](https://github.com/kellerkindt/w5500/pull/66))
- `DeviceState` is now publicly re-exported [@22dd5e2bdd](https://github.com/22dd5e2bdd) ([#65](https://github.com/reitermarkus))
## [0.5.0] - July 8th, 2024 ## [0.5.0] - July 8th, 2024
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "w5500" name = "w5500"
version = "0.5.0" version = "0.6.0"
authors = ["Michael Watzko <michael@watzko.de>", "Jonah Dahlquist <hi@jonah.name>", "Ryan Summers <ryan.summers@vertigo-designs.com"] authors = ["Michael Watzko <michael@watzko.de>", "Jonah Dahlquist <hi@jonah.name>", "Ryan Summers <ryan.summers@vertigo-designs.com"]
repository = "https://github.com/kellerkindt/w5500.git" repository = "https://github.com/kellerkindt/w5500.git"
description = "W5500 IoT Controller implementation." description = "W5500 IoT Controller implementation."
@ -14,7 +14,6 @@ edition = "2018"
no-chip-version-assertion = [] no-chip-version-assertion = []
[dependencies] [dependencies]
byteorder = { version = "1.3.4", default-features = false }
embedded-hal = "1" embedded-hal = "1"
embedded-nal = "0.9.0" embedded-nal = "0.9.0"
bit_field = "0.10" bit_field = "0.10"