Skip to content

Commit

Permalink
Prepare 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahix committed Jan 17, 2025
1 parent f49ffb8 commit 20c2154
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
31 changes: 17 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,6 @@ 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]
### `profirust`
#### Added
- `SerialPortPhy` now automatically configures low-latency mode for USB-serial
adapters on Linux. This is especially necessary for FTDI-based devices as
those come with a high latency configured by default.

#### Fixed
- Fixed a regression from `v0.5.0` where `no_std` builds of profirust were no
longer possible. They would fail with errors like the following one:
```text
error[E0277]: the trait bound `ManagedSlice<'_, u8>: From<[_; 0]>` is not satisfied
```

### `gsd-parser`
#### Added
- Slot information is now parsed correctly.
Expand All @@ -34,6 +21,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `gsdtool` now automatically selects the module for compact stations.


## [0.5.1] - 2025-01-17
### `profirust`
#### Added
- `SerialPortPhy` now automatically configures low-latency mode for USB-serial
adapters on Linux. This is especially necessary for FTDI-based devices as
those come with a high latency configured by default.

#### Fixed
- Fixed a regression from `v0.5.0` where `no_std` builds of profirust were no
longer possible. They would fail with errors like the following one:
```text
error[E0277]: the trait bound `ManagedSlice<'_, u8>: From<[_; 0]>` is not satisfied
```


## [0.5.0] - 2024-12-20
### `profirust`
#### Added
Expand Down Expand Up @@ -168,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial Release.


[Unreleased]: https://github.com/rahix/profirust/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/rahix/profirust/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/rahix/profirust/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/rahix/profirust/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/rahix/profirust/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/rahix/profirust/compare/v0.2.1...v0.3.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "profirust"
version = "0.5.0"
version = "0.5.1"
edition = "2021"

description = "PROFIBUS-DP compatible communication stack in pure Rust"
Expand Down

0 comments on commit 20c2154

Please sign in to comment.