Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored and schjan committed Feb 10, 2024
1 parent cb59269 commit 3c98383
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 8 deletions.
5 changes: 5 additions & 0 deletions zusi-fahrpult/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4](https://github.com/zusi/zusi-rs/compare/zusi-fahrpult-v0.1.3...zusi-fahrpult-v0.1.4) - 2024-02-10

### Other
- shadow derive package

## [0.1.3](https://github.com/zusi/zusi-rs/compare/zusi-fahrpult-v0.1.2...zusi-fahrpult-v0.1.3) - 2024-02-10

### Other
Expand Down
4 changes: 2 additions & 2 deletions zusi-fahrpult/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zusi-fahrpult"
description = "TCP-Client for Zusi 3 Hobby `Fahrpult`-Mode."
version = "0.1.3"
version = "0.1.4"
authors = ["Jannis Schaefer <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -10,4 +10,4 @@ readme = "../README.md"

[dependencies]
thiserror = "1"
zusi-protocol = { path = "../zusi-protocol", version = "0.2.0" }
zusi-protocol = { path = "../zusi-protocol", version = "0.2.1" }
5 changes: 5 additions & 0 deletions zusi-protocol-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/zusi/zusi-rs/compare/zusi-protocol-derive-v0.1.1...zusi-protocol-derive-v0.1.2) - 2024-02-10

### Other
- shadow derive package

## [0.1.1](https://github.com/zusi/zusi-rs/compare/zusi-protocol-derive-v0.1.0...zusi-protocol-derive-v0.1.1) - 2024-02-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion zusi-protocol-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zusi-protocol-derive"
description = "Contains derivable serialization and deserialization logic for the Zusi 3 TCP-Protocol"
version = "0.1.1"
version = "0.1.2"
authors = ["Jannis Schaefer <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
5 changes: 5 additions & 0 deletions zusi-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1](https://github.com/zusi/zusi-rs/compare/zusi-protocol-v0.2.0...zusi-protocol-v0.2.1) - 2024-02-10

### Other
- shadow derive package

## [0.2.0](https://github.com/zusi/zusi-rs/compare/zusi-protocol-v0.1.2...zusi-protocol-v0.2.0) - 2024-02-10

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions zusi-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zusi-protocol"
description = "Contains serialization and deserialization logic for the Zusi 3 TCP-Protocol"
version = "0.2.0"
version = "0.2.1"
authors = ["Jannis Schaefer <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand All @@ -11,7 +11,7 @@ readme = "../README.md"
[dependencies]
thiserror = "1"
log = "0.4"
zusi-protocol-derive = { path = "../zusi-protocol-derive", version = "0.1.1", optional = true }
zusi-protocol-derive = { path = "../zusi-protocol-derive", version = "0.1.2", optional = true }
nom = { version = "7", optional = true }
either = { version = "1.10", optional = true }

Expand Down
5 changes: 5 additions & 0 deletions zusi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/zusi/zusi-rs/compare/zusi-v0.3.0...zusi-v0.3.1) - 2024-02-10

### Other
- shadow derive package

## [0.3.0](https://github.com/zusi/zusi-rs/compare/zusi-v0.2.3...zusi-v0.3.0) - 2024-02-10

### Added
Expand Down
6 changes: 3 additions & 3 deletions zusi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zusi"
description = "Proxy crate which bundles an async and sync TCP client for Zusi 3"
version = "0.3.0"
version = "0.3.1"
authors = ["Jannis Schaefer <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down Expand Up @@ -31,8 +31,8 @@ required-features = ["fahrpult", "async"]

[dependencies]
either = "1.10"
zusi-fahrpult = { path = "../zusi-fahrpult", optional = true, version = "0.1.3" }
zusi-protocol = { path = "../zusi-protocol", version = "0.2.0" }
zusi-fahrpult = { path = "../zusi-fahrpult", optional = true, version = "0.1.4" }
zusi-protocol = { path = "../zusi-protocol", version = "0.2.1" }
thiserror = "1"

bytes = { version = "1", optional = true }
Expand Down

0 comments on commit 3c98383

Please sign in to comment.