Skip to content

Commit 49d1d7f

Browse files
chore: release main
1 parent 87f0809 commit 49d1d7f

File tree

18 files changed

+141
-19
lines changed

18 files changed

+141
-19
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{}
1+
{"crates/dyn-error":"0.1.0","crates/metrics":"0.1.0","crates/mqtt-client":"0.1.0","crates/mqtt-macros":"0.1.0","crates/mqtt-proto":"0.1.0","crates/mqtt-provider":"0.1.0","crates/mqtt-provider-paho":"0.1.0","examples/mqtt-light":"0.0.1","examples/mqtt-light-manual-topics":"0.0.1"}

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dyn-error/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-07-20)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename most of the crates
9+
10+
### Features
11+
12+
* create mqtt client ([#26](https://github.com/YoloDev/hass-rs/issues/26)) ([bad7343](https://github.com/YoloDev/hass-rs/commit/bad7343052c4b75f90aec99e72b2c7a53bbbd6a6))

crates/dyn-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hass-dyn-error"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/metrics/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-07-20)
4+
5+
6+
### Features
7+
8+
* add tracing ([#33](https://github.com/YoloDev/hass-rs/issues/33)) ([f833af1](https://github.com/YoloDev/hass-rs/commit/f833af1c61de8dd79ebfe66dd6488ab126312960))
9+
10+
11+
### Dependencies
12+
13+
* update rust crate lasso to 0.7 ([#48](https://github.com/YoloDev/hass-rs/issues/48)) ([30f1f63](https://github.com/YoloDev/hass-rs/commit/30f1f63ac6a37b658d8927df91810f4b447f1bac))
14+
* update rust crate opentelemetry to 0.19 ([#45](https://github.com/YoloDev/hass-rs/issues/45)) ([92cf5c6](https://github.com/YoloDev/hass-rs/commit/92cf5c609f1d9caf18abd9f1368986c2a7013128))

crates/metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hass-metrics"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

crates/mqtt-client/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-07-20)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename most of the crates
9+
10+
### Features
11+
12+
* add tracing ([#33](https://github.com/YoloDev/hass-rs/issues/33)) ([f833af1](https://github.com/YoloDev/hass-rs/commit/f833af1c61de8dd79ebfe66dd6488ab126312960))
13+
* create mqtt client ([#26](https://github.com/YoloDev/hass-rs/issues/26)) ([bad7343](https://github.com/YoloDev/hass-rs/commit/bad7343052c4b75f90aec99e72b2c7a53bbbd6a6))
14+
* partial no-std support ([#49](https://github.com/YoloDev/hass-rs/issues/49)) ([8391c24](https://github.com/YoloDev/hass-rs/commit/8391c245dc2f524795cbc3505d1604ab7abc5184))
15+
16+
17+
### Bug Fixes
18+
19+
* **client:** default-features = false for dependencies ([#29](https://github.com/YoloDev/hass-rs/issues/29)) ([80d0f20](https://github.com/YoloDev/hass-rs/commit/80d0f20b6958b1670069b7365968a42b4f0f6938))
20+
* span context issues ([#47](https://github.com/YoloDev/hass-rs/issues/47)) ([abca3dc](https://github.com/YoloDev/hass-rs/commit/abca3dcdcbb76b934eb2692fd7240d0e6d3ba02a))

crates/mqtt-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hass-mqtt-client"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
description = "home-assistant MQTT client"
55
edition.workspace = true
66
authors.workspace = true

crates/mqtt-macros/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-07-20)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename most of the crates
9+
10+
### Features
11+
12+
* create mqtt client ([#26](https://github.com/YoloDev/hass-rs/issues/26)) ([bad7343](https://github.com/YoloDev/hass-rs/commit/bad7343052c4b75f90aec99e72b2c7a53bbbd6a6))
13+
* partial no-std support ([#49](https://github.com/YoloDev/hass-rs/issues/49)) ([8391c24](https://github.com/YoloDev/hass-rs/commit/8391c245dc2f524795cbc3505d1604ab7abc5184))
14+
15+
16+
### Dependencies
17+
18+
* update rust crate itertools to 0.11 ([#54](https://github.com/YoloDev/hass-rs/issues/54)) ([f12c56e](https://github.com/YoloDev/hass-rs/commit/f12c56e566324db660c11dd471d4d157360e083c))

crates/mqtt-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hass-mqtt-macros"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
description = "home-assistant MQTT discovery types macros"
55
edition.workspace = true
66
authors.workspace = true

0 commit comments

Comments
 (0)