Skip to content

Commit 44f4f13

Browse files
chore: release main
1 parent e84fe7f commit 44f4f13

File tree

16 files changed

+134
-28
lines changed

16 files changed

+134
-28
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-types":"0.1.0","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 (2022-12-18)
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 (2022-12-18)
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-types 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"
@@ -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-types = { version = "0.0.0", path = "../mqtt-types", 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-types = { version = "0.1.0", path = "../mqtt-types", 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 (2022-12-18)
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"
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 (2022-12-18)
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+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* hass-dyn-error bumped from 0.0.0 to 0.1.0
20+
* hass-mqtt-provider bumped from 0.0.0 to 0.1.0

crates/mqtt-provider-paho/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hass-mqtt-provider-paho"
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
@@ -13,8 +13,8 @@ pin-project = "1"
1313
thiserror = "1"
1414
tokio = { version = "1", default-features = false, features = ["rt", "net"] }
1515

16-
hass-dyn-error = { version = "0.0.0", path = "../dyn-error" }
17-
hass-mqtt-provider = { version = "0.0.0", path = "../mqtt-provider" }
16+
hass-dyn-error = { version = "0.1.0", path = "../dyn-error" }
17+
hass-mqtt-provider = { version = "0.1.0", path = "../mqtt-provider" }
1818

1919
[features]
2020
default = ["bundled", "ssl"]

0 commit comments

Comments
 (0)