Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

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

15 changes: 15 additions & 0 deletions crates/sbd-gen-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0](https://github.com/ariel-os/sbd/compare/sbd-gen-schema-v0.3.0...sbd-gen-schema-v0.4.0) - 2026-04-08

### Added

- make schema version separate from schema crate version

### Other

- *(deps)* bump semver from 1.0.27 to 1.0.28
- *(uart)* equate absent and empty .possible_peripherals
- Generate code for UARTs
- Add property for UART MCU peripherals
- Expose presence of host facing UARTs as `has_host_facing_uart`
- Define host_facing UART property

## [0.3.0](https://github.com/ariel-os/sbd/compare/sbd-gen-schema-v0.2.0...sbd-gen-schema-v0.3.0) - 2026-03-20

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/sbd-gen-schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-gen-schema"
version = "0.3.0"
version = "0.4.0"
Comment thread
ROMemories marked this conversation as resolved.
description = "Schema of SBD files"
categories = ["embedded", "hardware-support"]
keywords = ["ariel", "board", "bsp", "riot"]
Expand Down
13 changes: 13 additions & 0 deletions crates/sbd-gen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.1](https://github.com/ariel-os/sbd/compare/sbd-gen-v0.3.0...sbd-gen-v0.3.1) - 2026-04-08

### Other

- *(deps)* bump insta from 1.47.1 to 1.47.2
- *(deps)* bump insta from 1.47.0 to 1.47.1
- *(deps)* bump insta from 1.46.3 to 1.47.0
- *(uart)* equate absent and empty .possible_peripherals
- Test code generation
- Generate code for UARTs
- Expose presence of host facing UARTs as `has_host_facing_uart`
- address clippy lint

## [0.3.0](https://github.com/ariel-os/sbd/compare/sbd-gen-v0.2.0...sbd-gen-v0.3.0) - 2026-03-20

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/sbd-gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-gen"
version = "0.3.0"
version = "0.3.1"
description = "A generator for turning SBD (Structured Board Descriptions) into BSPs."
categories = ["command-line-utilities", "embedded", "hardware-support"]
keywords = ["ariel", "board", "bsp", "riot"]
Expand All @@ -16,7 +16,7 @@ camino = { workspace = true }
indexmap = { workspace = true }
lazy-regex = { workspace = true }
prettyplease = { workspace = true }
sbd-gen-schema = { path = "../sbd-gen-schema", version = "0.3.0" }
sbd-gen-schema = { path = "../sbd-gen-schema", version = "0.4.0" }
serde = { workspace = true }
serde_with = { workspace = true }
serde_yaml = { workspace = true }
Expand Down
Loading