Skip to content

Commit cdd1d97

Browse files
chore: release main
1 parent 2d0608f commit cdd1d97

File tree

16 files changed

+123
-26
lines changed

16 files changed

+123
-26
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/mqtt-client":"0.1.0","crates/mqtt-macros":"0.1.0","crates/mqtt-provider":"0.1.0","crates/mqtt-provider-paho":"0.1.0","crates/mqtt-proto":"0.0.1","examples/mqtt-light":"0.0.1","examples/mqtt-light-manual-topics":"0.0.1"}

Cargo.lock

Lines changed: 8 additions & 8 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-01-30)
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/mqtt-client/CHANGELOG.md

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

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"
@@ -27,10 +27,10 @@ tokio = { version = "1", features = ["full"] }
2727
tracing = "0.1"
2828
tracing-error = "0.2"
2929

30-
hass-dyn-error = { version = "0.0.0", path = "../dyn-error" }
31-
hass-mqtt-provider = { version = "0.0.0", path = "../mqtt-provider", default-features = false }
32-
hass-mqtt-provider-paho = { version = "0.0.0", path = "../mqtt-provider-paho", default-features = false, optional = true }
33-
hass-mqtt-proto = { version = "0.0.0", path = "../mqtt-proto", default-features = false }
30+
hass-dyn-error = { version = "0.1.0", path = "../dyn-error" }
31+
hass-mqtt-provider = { version = "0.1.0", path = "../mqtt-provider", default-features = false }
32+
hass-mqtt-provider-paho = { version = "0.1.0", path = "../mqtt-provider-paho", default-features = false, optional = true }
33+
hass-mqtt-proto = { version = "0.0.1", path = "../mqtt-proto", default-features = false }
3434

3535
[build-dependencies]
3636
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-01-30)
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"

crates/mqtt-proto/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* hass-mqtt-macros bumped from 0.0.0 to 0.1.0
6+
37
## [0.2.0](https://github.com/YoloDev/hass-rs/compare/hass-mqtt-discovery-v0.1.0...hass-mqtt-discovery-v0.2.0) (2022-11-27)
48

59

crates/mqtt-proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hass-mqtt-proto"
3-
version = "0.0.0"
3+
version = "0.0.1"
44
edition = "2021"
55
description = "home-assistant MQTT discovery types"
66
license = "MIT"
@@ -18,7 +18,7 @@ serde_repr = "0.1"
1818
thiserror = "1"
1919
tracing-error = { version = "0.2", optional = true }
2020

21-
hass-mqtt-macros = { version = "0.0.0", path = "../mqtt-macros" }
21+
hass-mqtt-macros = { version = "0.1.0", path = "../mqtt-macros" }
2222

2323
[dev-dependencies]
2424
assert_matches = "1"

0 commit comments

Comments
 (0)