From ad7832b006f409e67e8e0be9a62071b7ebfd18a4 Mon Sep 17 00:00:00 2001 From: Rahix Date: Thu, 31 Oct 2024 21:45:41 +0100 Subject: [PATCH] Prepare 0.3.0 --- CHANGELOG.md | 6 +++++- gsd-parser/Cargo.toml | 2 +- gsdtool/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ea48bc..79e3996 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.3.0] - 2024-10-31 ### `profirust` #### Fixed - Fixed compiler warnings due to superfluous `#[cfg]` gates. @@ -54,7 +57,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.2.1...HEAD +[Unreleased]: https://github.com/rahix/profirust/compare/v0.3.0...HEAD +[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 [0.2.0]: https://github.com/rahix/profirust/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/rahix/profirust/compare/v0.1.0...v0.1.1 diff --git a/gsd-parser/Cargo.toml b/gsd-parser/Cargo.toml index e88608b..3829ea3 100644 --- a/gsd-parser/Cargo.toml +++ b/gsd-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gsd-parser" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "Parser for PROFIBUS GSD files (Generic Station Description)" diff --git a/gsdtool/Cargo.toml b/gsdtool/Cargo.toml index b09f85e..4547470 100644 --- a/gsdtool/Cargo.toml +++ b/gsdtool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gsdtool" -version = "0.2.1" +version = "0.3.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.2.0", path = "../gsd-parser/" } +gsd-parser = { version = "0.3.0", path = "../gsd-parser/" } gumdrop = "0.8.1"