-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGELOG: Follow the "keep a changelog" specification
- Loading branch information
1 parent
1f64f30
commit ec0fb66
Showing
8 changed files
with
135 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
# Unreleased | ||
# Changelog | ||
|
||
## Breaking | ||
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] | ||
|
||
### Changed | ||
|
||
- The return type of `PendingConnection::client_data()` is changed from `&SerializedValue` to | ||
`&SerializedValueSlice`. | ||
- Rename `ConnectionError::UnexpectedBrokerShutdown` to `UnexpectedShutdown`. | ||
- Rename `EstablishError::VersionMismatch` to `IncompatibleVersion`. | ||
- Rename `EstablishError::BrokerShutdown` to `Shutdown`. | ||
|
||
## [0.2.0] - 2023-11-27 | ||
|
||
# 0.2.0 (November 27th, 2023) | ||
### Changed | ||
|
||
- Bump for Aldrin 0.2.0. | ||
|
||
|
||
# 0.1.0 (November 24th, 2023) | ||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[Unreleased]: https://github.com/dennis-hamester/aldrin/compare/aldrin-broker-0.2.1...HEAD | ||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-broker-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,38 @@ | ||
# Unreleased | ||
# Changelog | ||
|
||
## Breaking | ||
All notable changes to this project will be documented in this file. | ||
|
||
- `aldrin::Error` is now used for every fallible function that is generated. Previously, more | ||
specific error types were used in a few places. | ||
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). | ||
|
||
## Added | ||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Support `lifetime` built-in type. It resolves to `aldrin::LifetimeId` in all cases. | ||
|
||
### Breaking | ||
|
||
- `aldrin::Error` is now used for every fallible function that is generated. Previously, more | ||
specific error types were used in a few places. | ||
|
||
# 0.2.1 (December 20th, 2023) | ||
## [0.2.1] - 2023-12-20 | ||
|
||
## Fixed | ||
### Fixed | ||
|
||
- Fix skipping over unknown fields when deserializing a struct. | ||
|
||
## [0.2.0] - 2023-11-27 | ||
|
||
# 0.2.0 (November 27th, 2023) | ||
### Changed | ||
|
||
- Bump for Aldrin 0.2.0. | ||
|
||
|
||
# 0.1.0 (November 24th, 2023) | ||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[Unreleased]: https://github.com/dennis-hamester/aldrin/compare/aldrin-codegen-0.2.1...HEAD | ||
[0.2.1]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.2.1 | ||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-codegen-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
# 0.2.0 (November 27th, 2023) | ||
# Changelog | ||
|
||
## Added | ||
All notable changes to this project will be documented in this file. | ||
|
||
- Implement `FromStr` for `ObjectUuid` and `ServiceUuid`. | ||
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.2.0] - 2023-11-27 | ||
|
||
### Added | ||
|
||
# 0.1.0 (November 24th, 2023) | ||
- Implement `FromStr` for `ObjectUuid` and `ServiceUuid`. | ||
|
||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-core-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
# 0.2.0 (November 27th, 2023) | ||
# Changelog | ||
|
||
- Bump for Aldrin 0.2.0. | ||
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.2.0] - 2023-11-27 | ||
|
||
### Changed | ||
|
||
# 0.1.0 (November 24th, 2023) | ||
- Bump for Aldrin 0.2.0. | ||
|
||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-gen-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
# 0.2.0 (November 27th, 2023) | ||
# Changelog | ||
|
||
- Bump for Aldrin 0.2.0. | ||
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.2.0] - 2023-11-27 | ||
|
||
### Changed | ||
|
||
# 0.1.0 (November 24th, 2023) | ||
- Bump for Aldrin 0.2.0. | ||
|
||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-macros-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,26 @@ | ||
# Unreleased | ||
# Changelog | ||
|
||
## Added | ||
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] | ||
|
||
### Added | ||
|
||
- Add built-in type `lifetime`. | ||
|
||
## [0.2.0] - 2023-11-27 | ||
|
||
# 0.2.0 (November 27th, 2023) | ||
### Changed | ||
|
||
- Bump for Aldrin 0.2.0. | ||
|
||
|
||
# 0.1.0 (November 24th, 2023) | ||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[Unreleased]: https://github.com/dennis-hamester/aldrin/compare/aldrin-parser-0.2.1...HEAD | ||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-parser-0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
# 0.2.0 (November 27th, 2023) | ||
# Changelog | ||
|
||
- Bump for Aldrin 0.2.0. | ||
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.2.0] - 2023-11-27 | ||
|
||
### Changed | ||
|
||
# 0.1.0 (November 24th, 2023) | ||
- Bump for Aldrin 0.2.0. | ||
|
||
## [0.1.0] - 2023-11-24 | ||
|
||
- Initial release. | ||
|
||
[0.2.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.2.0 | ||
[0.1.0]: https://github.com/dennis-hamester/aldrin/releases/tag/aldrin-test-0.1.0 |