Skip to content

Commit

Permalink
🔖 Prepare for release of v0.4.3
Browse files Browse the repository at this point in the history
- Updates Changelog
- Updates version numbers
  • Loading branch information
luukvanderduim committed Mar 18, 2024
1 parent f4e7386 commit 281c958
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 17 deletions.
20 changes: 10 additions & 10 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 Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ All notable changes to this project will be documented in this file.

---

## [zbus-lockstep-v0.4.3] - 2023-03-18

### 🐛 Fixes

- 🩹 `validate` now requires a comma separated argument list if multiple arguments are supplied.
- 🩹 In macros prefer relative paths to absolute paths.

### 📝 Documentation

- 📝 Mention `resolve_xml_path` can now find `..xml/` or `..XML/` too.

### 🧑‍💻 Improve DX

- 🧑‍💻 Be more lenient by adding parent to defaults for `resolve_xml_path`

## [zbus-lockstep-v0.4.2] - 2023-03-09

### 🚸 Improve UX
Expand Down
4 changes: 2 additions & 2 deletions zbus-lockstep-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "zbus-lockstep-macros"
authors = ["Luuk van der Duim <[email protected]>"]
description = "Macros to keep types in lockstep with DBus XML definitions"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
keywords = ["type-safety", "zbus", "DBus", "IPC"]
categories = ["API-bindings"]
Expand All @@ -22,7 +22,7 @@ proc-macro = true
syn = "2.0"
proc-macro2 = "1.0"
quote = "1.0"
zbus-lockstep = { path = "../zbus-lockstep", version = "0.4.2" }
zbus-lockstep = { path = "../zbus-lockstep", version = "0.4.3" }
zbus_xml = "4.0"
zvariant = "4.0"

Expand Down
2 changes: 1 addition & 1 deletion zbus-lockstep-macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add `zbus-lockstep-macros` to `Cargo.toml`'s dependencies:

```toml
[dependencies]
zbus-lockstep-macros = "0.4.2"
zbus-lockstep-macros = "0.4.3"
```

If the `DBus` XML descriptions can be found in the crates root,
Expand Down
2 changes: 1 addition & 1 deletion zbus-lockstep-macros/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! # zbus-lockstep-macros
//!
//! This provides the `validate` macro that builds on `zbus-lockstep`.
#![doc(html_root_url = "https://docs.rs/zbus-lockstep-macros/0.4.2")]
#![doc(html_root_url = "https://docs.rs/zbus-lockstep-macros/0.4.3")]

type Result<T> = std::result::Result<T, syn::Error>;

Expand Down
2 changes: 1 addition & 1 deletion zbus-lockstep/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = [
"Tait Hoyem<[email protected]>",
]
description = "Keep types in lockstep with DBus XML definitions"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
keywords = ["type-safety", "zbus", "DBus", "IPC"]
categories = ["API-bindings"]
Expand Down
2 changes: 1 addition & 1 deletion zbus-lockstep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add `zbus-lockstep` to `Cargo.toml`'s dev-dependencies:

```toml
[dev-dependencies]
zbus-lockstep = "0.4.2"
zbus-lockstep = "0.4.3"
```

Consider the followwing XML description, an interface with a single signal.
Expand Down
2 changes: 1 addition & 1 deletion zbus-lockstep/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//!
//! - `xml` or `XML`, the default path for `DBus` XML files - or is set by the
//! - `LOCKSTEP_XML_PATH`, the env variable that overrides the default.
#![doc(html_root_url = "https://docs.rs/zbus-lockstep/0.4.2")]
#![doc(html_root_url = "https://docs.rs/zbus-lockstep/0.4.3")]
#![allow(clippy::missing_errors_doc)]

mod error;
Expand Down

0 comments on commit 281c958

Please sign in to comment.