Skip to content

Commit

Permalink
🔖 Prepare for release of v0.4.4
Browse files Browse the repository at this point in the history
Update changelog
Update version numbers
  • Loading branch information
luukvanderduim committed Mar 18, 2024
1 parent 1d7497b commit 02ca8f1
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
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.

7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.

---

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

### 🧑‍💻 Improve DX

- 🧑‍💻 Also look in the directory with the crate name.
This is useful if build is invoked from the workspace.

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

### 🐛 Fixes
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 <luukvanderduim@gmail.com>"]
description = "Macros to keep types in lockstep with DBus XML definitions"
version = "0.4.3"
version = "0.4.4"
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.3" }
zbus-lockstep = { path = "../zbus-lockstep", version = "0.4.4" }
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.3"
zbus-lockstep-macros = "0.4.4"
```

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.3")]
#![doc(html_root_url = "https://docs.rs/zbus-lockstep-macros/0.4.4")]

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<tait@tait.tech>",
]
description = "Keep types in lockstep with DBus XML definitions"
version = "0.4.3"
version = "0.4.4"
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.3"
zbus-lockstep = "0.4.4"
```

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.3")]
#![doc(html_root_url = "https://docs.rs/zbus-lockstep/0.4.4")]
#![allow(clippy::missing_errors_doc)]

mod error;
Expand Down

0 comments on commit 02ca8f1

Please sign in to comment.