From 1507a00d36c615108c6e894e7856de80a831905e Mon Sep 17 00:00:00 2001 From: Rahix Date: Sun, 23 Feb 2025 11:59:40 +0100 Subject: [PATCH] Prepare 0.6.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 9b7a08e..c0b6733 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.6.0] - 2025-02-23 ### `profirust` #### Changed - Upgraded to `rp2040-hal` version 0.10. @@ -179,7 +182,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.1...HEAD +[Unreleased]: https://github.com/rahix/profirust/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/rahix/profirust/compare/v0.5.1...v0.6.0 [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 diff --git a/Cargo.toml b/Cargo.toml index ef28964..4510b21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "profirust" -version = "0.5.1" +version = "0.6.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 8f20e9d..66a8775 100644 --- a/gsd-parser/Cargo.toml +++ b/gsd-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gsd-parser" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "Parser for PROFIBUS GSD files (Generic Station Description)" diff --git a/gsdtool/Cargo.toml b/gsdtool/Cargo.toml index b56c4c7..30746a9 100644 --- a/gsdtool/Cargo.toml +++ b/gsdtool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gsdtool" -version = "0.5.0" +version = "0.6.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.5.0", path = "../gsd-parser/" } +gsd-parser = { version = "0.6.0", path = "../gsd-parser/" } gumdrop = "0.8.1"