Skip to content

Commit

Permalink
0.10.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dennis-hamester committed Nov 26, 2024
1 parent 6a962c0 commit cf573fe
Show file tree
Hide file tree
Showing 18 changed files with 64 additions and 34 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.

7 changes: 7 additions & 0 deletions aldrin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.10.0] - 2024-11-26

### Added

- Support for array types `[TYPE; LEN]` in Aldrin schema.

## [0.9.0] - 2024-11-19

### Added
Expand Down Expand Up @@ -222,6 +228,7 @@ This version still connects to brokers using protocol version 14.

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-0.9.0
[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
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.9.0"
version = "0.10.0"

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

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

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

Expand Down
5 changes: 5 additions & 0 deletions broker/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.10.0] - 2024-11-26

- Bump for Aldrin 0.10.0 release.

## [0.9.0] - 2024-11-19

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

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.9.0
[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
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.9.0"
version = "0.10.0"

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

[dependencies.aldrin-core]
version = "0.9.0"
version = "0.10.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.10.0] - 2024-11-26

### Added

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

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.9.0
[0.8.2]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.8.2
[0.8.1]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.8.1
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.9.0"
version = "0.10.0"

authors.workspace = true
categories.workspace = true
Expand Down Expand Up @@ -29,7 +29,7 @@ heck = { workspace = true }
thiserror = { workspace = true }

[dependencies.aldrin-parser]
version = "0.9.0"
version = "0.10.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.9.0"
version = "0.10.0"

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

[dependencies.aldrin-core]
version = "0.9.0"
version = "0.10.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.10.0] - 2024-11-26

### Added

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

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.9.0
[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
Expand Down
4 changes: 2 additions & 2 deletions 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.9.0"
version = "0.10.0"

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

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

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.10.0] - 2024-11-26

- Bump for Aldrin 0.10.0 release.

## [0.9.0] - 2024-11-19

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

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.9.0
[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
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.9.0"
version = "0.10.0"

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

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

[dependencies.aldrin-parser]
version = "0.9.0"
version = "0.10.0"
path = "../parser"
default-features = false
5 changes: 5 additions & 0 deletions macros/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.10.0] - 2024-11-26

- Bump for Aldrin 0.10.0 release.

## [0.9.0] - 2024-11-19

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

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.9.0
[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
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 macros."
version = "0.9.0"
version = "0.10.0"

authors.workspace = true
categories.workspace = true
Expand All @@ -27,12 +27,12 @@ workspace = true
heck = { workspace = true }

[dependencies.aldrin-parser]
version = "0.9.0"
version = "0.10.0"
path = "../parser"
default-features = false

[dependencies.aldrin-codegen]
version = "0.9.0"
version = "0.10.0"
path = "../codegen"
default-features = false
features = ["rust"]
Expand Down
3 changes: 2 additions & 1 deletion parser/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.10.0] - 2024-11-26

### 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.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.9.0
[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
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.9.0"
version = "0.10.0"

authors.workspace = true
categories.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions test/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.10.0] - 2024-11-26

- Bump for Aldrin 0.10.0 release.

## [0.9.0] - 2024-11-19

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

- Initial release.

[0.10.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.10.0
[0.9.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.9.0
[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
Expand Down
Loading

0 comments on commit cf573fe

Please sign in to comment.