From 98bb4bbf4a07511574cc87adc8752f08140bb48a Mon Sep 17 00:00:00 2001 From: Rahix Date: Fri, 20 Dec 2024 03:16:32 +0100 Subject: [PATCH] Prepare 0.5.0 --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- gsd-parser/Cargo.toml | 2 +- gsdtool/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f46edbf..a10bd32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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] - 2024-12-20 ### `profirust` #### Added - Added a `SerialPortPhy` implementation (feature `phy-serial`) which uses an @@ -138,7 +141,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.4.0...HEAD +[Unreleased]: https://github.com/rahix/profirust/compare/v0.5.0...HEAD +[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 [0.2.1]: https://github.com/rahix/profirust/compare/v0.2.0...v0.2.1 diff --git a/Cargo.toml b/Cargo.toml index a1bea5f..31bc055 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "profirust" -version = "0.4.0" +version = "0.5.0" edition = "2021" description = "PROFIBUS-DP compatible communication stack in pure Rust" diff --git a/gsd-parser/Cargo.toml b/gsd-parser/Cargo.toml index 3829ea3..8f20e9d 100644 --- a/gsd-parser/Cargo.toml +++ b/gsd-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gsd-parser" -version = "0.3.0" +version = "0.5.0" edition = "2021" description = "Parser for PROFIBUS GSD files (Generic Station Description)" diff --git a/gsdtool/Cargo.toml b/gsdtool/Cargo.toml index 4547470..b56c4c7 100644 --- a/gsdtool/Cargo.toml +++ b/gsdtool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gsdtool" -version = "0.3.0" +version = "0.5.0" edition = "2021" description = "CLI utility for PROFIBUS GSD files (Generic Station Descripions)" @@ -16,5 +16,5 @@ homepage = "https://github.com/rahix/profirust/tree/main/gsdtool" bitvec = "1.0.1" console = { version = "0.15.7", default-features = false } dialoguer = { version = "0.10.4", default-features = false, features = ["editor", "fuzzy-select"] } -gsd-parser = { version = "0.3.0", path = "../gsd-parser/" } +gsd-parser = { version = "0.5.0", path = "../gsd-parser/" } gumdrop = "0.8.1"