Skip to content

Commit 9862213

Browse files
chore: release main
1 parent abca3dc commit 9862213

File tree

18 files changed

+164
-29
lines changed

18 files changed

+164
-29
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 (2023-04-01)
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 = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

crates/metrics/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## 0.1.0 (2023-04-01)
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 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 = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

crates/mqtt-client/CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Changelog
2+
3+
## 0.1.0 (2023-04-01)
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+
15+
16+
### Bug Fixes
17+
18+
* **client:** default-features = false for dependencies ([#29](https://github.com/YoloDev/hass-rs/issues/29)) ([80d0f20](https://github.com/YoloDev/hass-rs/commit/80d0f20b6958b1670069b7365968a42b4f0f6938))
19+
* span context issues ([#47](https://github.com/YoloDev/hass-rs/issues/47)) ([abca3dc](https://github.com/YoloDev/hass-rs/commit/abca3dcdcbb76b934eb2692fd7240d0e6d3ba02a))
20+
21+
22+
### Dependencies
23+
24+
* The following workspace dependencies were updated
25+
* dependencies
26+
* hass-dyn-error bumped from 0.0.0 to 0.1.0
27+
* hass-mqtt-provider bumped from 0.0.0 to 0.1.0
28+
* hass-mqtt-provider-paho bumped from 0.0.0 to 0.1.0
29+
* hass-mqtt-proto bumped from 0.0.0 to 0.1.0

crates/mqtt-client/Cargo.toml

Lines changed: 5 additions & 5 deletions
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
edition = "2021"
55
description = "home-assistant MQTT client"
66
license = "MIT"
@@ -29,10 +29,10 @@ tracing = "0.1"
2929
tracing-error = "0.2"
3030
tracing-opentelemetry = "0.18"
3131

32-
hass-dyn-error = { version = "0.0.0", path = "../dyn-error" }
33-
hass-mqtt-provider = { version = "0.0.0", path = "../mqtt-provider", default-features = false }
34-
hass-mqtt-provider-paho = { version = "0.0.0", path = "../mqtt-provider-paho", default-features = false, optional = true }
35-
hass-mqtt-proto = { version = "0.0.0", path = "../mqtt-proto", default-features = false }
32+
hass-dyn-error = { version = "0.1.0", path = "../dyn-error" }
33+
hass-mqtt-provider = { version = "0.1.0", path = "../mqtt-provider", default-features = false }
34+
hass-mqtt-provider-paho = { version = "0.1.0", path = "../mqtt-provider-paho", default-features = false, optional = true }
35+
hass-mqtt-proto = { version = "0.1.0", path = "../mqtt-proto", default-features = false }
3636

3737
[build-dependencies]
3838
hass-provide-any-probe = { version = "0.0.0", path = "../../build/provide-any-probe" }

crates/mqtt-macros/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 (2023-04-01)
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/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
edition = "2021"
55
description = "home-assistant MQTT discovery types macros"
66
license = "MIT"

0 commit comments

Comments
 (0)