Skip to content

Commit

Permalink
0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis-hamester committed Sep 22, 2024
1 parent 9f6e9a4 commit 4c8c6e8
Show file tree
Hide file tree
Showing 18 changed files with 52 additions and 36 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion aldrin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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.8.0] - 2024-09-22

### Added

Expand Down Expand Up @@ -203,6 +203,7 @@ This version still connects to brokers using protocol version 14.

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-0.5.0
Expand Down
6 changes: 3 additions & 3 deletions aldrin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin"
description = "Message bus for service-oriented RPC and interprocess communication."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand Down Expand Up @@ -35,14 +35,14 @@ futures-util = { workspace = true }
thiserror = { workspace = true }

[dependencies.aldrin-core]
version = "0.7.0"
version = "0.8.0"
path = "../core"
default-features = false
features = ["new-v4-ids"]

[dependencies.aldrin-macros]
optional = true
version = "0.7.0"
version = "0.8.0"
path = "../macros"
default-features = false

Expand Down
3 changes: 2 additions & 1 deletion broker/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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.8.0] - 2024-09-22

### Added

Expand Down Expand Up @@ -74,6 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.5.0
Expand Down
4 changes: 2 additions & 2 deletions broker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aldrin-broker"
description = """
Broker library of Aldrin, a message bus for service-oriented RPC and interprocess communication.
"""
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand Down Expand Up @@ -34,7 +34,7 @@ futures-core = { workspace = true }
thiserror = { workspace = true }

[dependencies.aldrin-core]
version = "0.7.0"
version = "0.8.0"
path = "../core"
default-features = false
features = ["new-v4-ids"]
Expand Down
3 changes: 2 additions & 1 deletion codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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.8.0] - 2024-09-22

### Added

Expand Down Expand Up @@ -80,6 +80,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.5.0
Expand Down
4 changes: 2 additions & 2 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin-codegen"
description = "Aldrin code generator library."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand All @@ -26,7 +26,7 @@ heck = { workspace = true }
thiserror = { workspace = true }

[dependencies.aldrin-parser]
version = "0.7.0"
version = "0.8.0"
path = "../parser"
default-features = false

Expand Down
4 changes: 2 additions & 2 deletions conformance-tester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin-conformance-tester"
description = "Protocol conformance tester for Aldrin brokers."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand All @@ -19,7 +19,7 @@ clap = { workspace = true }
colorchoice-clap = { workspace = true }

[dependencies.aldrin-core]
version = "0.7.0"
version = "0.8.0"
path = "../core"
default-features = false
features = ["tokio"]
Expand Down
3 changes: 2 additions & 1 deletion core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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.8.0] - 2024-09-22

### Added

Expand Down Expand Up @@ -109,6 +109,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.5.0
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
Shared core components of Aldrin, a message bus for service-oriented RPC and interprocess
communication.
"""
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions gen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
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).

## [0.8.0] - 2024-09-22

- Bump for Aldrin 0.8.0 release.

## [0.7.0] - 2024-07-25

### Added
Expand Down Expand Up @@ -42,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.5.0
Expand Down
6 changes: 3 additions & 3 deletions gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin-gen"
description = "Aldrin code generator."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand All @@ -19,12 +19,12 @@ clap = { workspace = true }
colorchoice-clap = { workspace = true }

[dependencies.aldrin-codegen]
version = "0.7.0"
version = "0.8.0"
path = "../codegen"
default-features = false
features = ["rust"]

[dependencies.aldrin-parser]
version = "0.7.0"
version = "0.8.0"
path = "../parser"
default-features = false
3 changes: 2 additions & 1 deletion macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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.8.0] - 2024-09-22

### Changed

Expand Down Expand Up @@ -47,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.5.0
Expand Down
6 changes: 3 additions & 3 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin-macros"
description = "Aldrin code generation macros."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand All @@ -21,12 +21,12 @@ all-features = true
proc-macro = true

[dependencies.aldrin-parser]
version = "0.7.0"
version = "0.8.0"
path = "../parser"
default-features = false

[dependencies.aldrin-codegen]
version = "0.7.0"
version = "0.8.0"
path = "../codegen"
default-features = false
features = ["rust"]
Expand Down
5 changes: 5 additions & 0 deletions parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
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).

## [0.8.0] - 2024-09-22

- Bump for Aldrin 0.8.0 release.

## [0.7.0] - 2024-07-25

- Bump for Aldrin 0.7.0 release.
Expand Down Expand Up @@ -43,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.5.0
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin-parser"
description = "Aldrin schema parser library."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand Down
3 changes: 2 additions & 1 deletion test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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.8.0] - 2024-09-22

### Changed

Expand Down Expand Up @@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release.

[0.8.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.8.0
[0.7.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.7.0
[0.6.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.6.0
[0.5.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.5.0
Expand Down
8 changes: 4 additions & 4 deletions test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aldrin-test"
description = "Utilities for Aldrin server and client tests."
version = "0.7.0"
version = "0.8.0"

authors.workspace = true
categories.workspace = true
Expand All @@ -24,17 +24,17 @@ tokio = ["dep:tokio"]
futures-util = { workspace = true }

[dependencies.aldrin]
version = "0.7.0"
version = "0.8.0"
path = "../aldrin"
default-features = false

[dependencies.aldrin-broker]
version = "0.7.0"
version = "0.8.0"
path = "../broker"
default-features = false

[dependencies.aldrin-core]
version = "0.7.0"
version = "0.8.0"
path = "../core"
default-features = false
features = ["channel"]
Expand Down

0 comments on commit 4c8c6e8

Please sign in to comment.