Skip to content

Commit 1a5a72a

Browse files
committed
release: v1.0.2
1 parent 2b7f9e8 commit 1a5a72a

File tree

2 files changed

+39
-30
lines changed

2 files changed

+39
-30
lines changed

CHANGELOG.md

Lines changed: 37 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,93 @@
11
# Teams Status - RS
22

3-
## [1.0.1] - 2024-06-30
3+
## [1.0.2] - 2025-01-25
44

5-
### 🐛 Bug Fixes
5+
### 🚀 Features
6+
- (ha_api) Add support for custom attributes set in HA, the service will query the attributes once and store them so they are re-sent each time
7+
- Fixes #30
68

7-
- (ha_api) Prevent application crash if HA is not available
9+
### 🚜 Refactor
10+
- Change in file encoding?
11+
12+
### 🎨 Styling
13+
- Minor reformatting
14+
15+
### 🧪 Testing
16+
- Add Bruno project to call HA API for testing
817

918
### ⚙️ Miscellaneous Tasks
19+
- Update deps
20+
- Create LICENSE
21+
- Update deps
22+
1023

11-
- Move unused line of code, for future use (maybe)
24+
## [1.0.1] - 2024-07-01
25+
26+
### 🐛 Bug Fixes
27+
- (ha_api) Prevent application crash if HA is not available
28+
- (ha_api) Prevent application crash if HA is not available
29+
30+
### ⚙️ Miscellaneous Tasks
1231
- Update deps
32+
- Move unsused line of code, for future use (maybe)
33+
- Update deps
34+
1335

1436
## [1.0.0] - 2024-04-12
1537

1638
### ⚡ Performance
17-
1839
- Concurrent HA API calls
1940
- Only update HA API for states that have changed
2041

2142
### ⚙️ Miscellaneous Tasks
22-
2343
- Remove duplicates from CHANGELOG.md
2444

45+
2546
## [0.5.0] - 2024-04-11
2647

2748
### 🐛 Bug Fixes
28-
2949
- Prevent sending additional updates
3050
- Temporarily build with a local home-assistant-rest dep as it includes non-published fixes, fixes #21
3151

3252
### 📚 Documentation
33-
3453
- Add HA persistent entities setup, fixes #15
3554

3655
### ⚡ Performance
37-
3856
- Update is_in_meeting and is_video_on first as the HA calls can take some time and create delays in automations
3957

4058
### ⚙️ Miscellaneous Tasks
41-
42-
- Add WIP Teams log parsing as it was discovered switching back to 'Available' is not being logged, rendering this whole
43-
mod useless until it is. Not compiled in project.
59+
- Add WIP Teams log parsing as it was discovered switching back to 'Available' is not being logged, rendering this whole mod useless until it is. Not compiled in project.
4460
- Remove unoptimized build settings
4561
- Update deps
4662
- Add logging
4763

64+
4865
## [0.4.1] - 2024-03-27
4966

5067
### 🐛 Bug Fixes
51-
5268
- Ensure MQTT is reconnected upon connection failure, fixes #19
5369

5470
### ⚙️ Miscellaneous Tasks
55-
5671
- Convert from using release-plz to git-cliff as it fits my needs better for this type of application
5772
- Update dependencies
5873

74+
5975
## [0.4.0] - 2024-03-13
6076

6177
### 🚀 Features
62-
6378
- (mqtt) Allow use of 'mqtt://' prefix in URL, which will be removed and saved back to conf.ini
6479
- Log panics to facilitate locating run-time errors
6580

6681
### 🐛 Bug Fixes
67-
6882
- (mqtt) Allow use of 'mqtt://' prefix in URL, which will be removed and saved back to conf.ini
6983

7084
### 🚜 Refactor
71-
7285
- (teams_ws) Rename files to make way for log parser
7386

7487
### 🎨 Styling
75-
7688
- Cleanup comment
7789

7890
### ⚙️ Miscellaneous Tasks
79-
8091
- Remove unused CICD
8192
- Add release-plz configuration
8293
- Ignore exe
@@ -85,55 +96,53 @@
8596
- Ignore tests folder
8697
- Update dependencies
8798

99+
88100
## [0.3.0] - 2024-01-11
89101

90102
### 🚀 Features
91-
92103
- Addition of new entities (all that are in the Teams API) for both HA and MQTT
93104

94105
### 🚜 Refactor
95-
96106
- Fix warning
97107
- Addition of new entities (all that are in the Teams API) for both HA and MQTT
98108

99109
### ⚙️ Miscellaneous Tasks
100-
101110
- Bump version to 0.3.0
102111

112+
103113
## [0.2.3] - 2024-01-09
104114

105115
### 🚀 Features
106-
107116
- Retain mqtt messages
108117
- Retain mqtt messages
109118

110119
### 🐛 Bug Fixes
111-
112120
- Prevent application from crashing if Teams is closed while running
113121

114122
### 🚜 Refactor
115-
116123
- Remove unused error unit
117124

118125
### ⚙️ Miscellaneous Tasks
119-
120126
- Update dependencies
121127
- Increase versioning
122128

123129
### Signed-off-by
124-
125130
- Dependabot[bot] <support@github.com>
126131

132+
127133
## [0.2.2] - 2023-11-20
128134

135+
129136
## [0.2.1] - 2023-11-20
130137

138+
131139
## [0.2.0] - 2023-11-19
132140

141+
133142
## [0.1.0] - 2023-11-16
134143

135144
### 🐛 Bug Fixes
136-
137145
- Fix wrong value used for video boolean, ensure there is an initial update when opening the app
138146

147+
139148
<!-- generated by git-cliff -->

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "teams_status"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2021"
55

66
[package.metadata.winres]
77
ProductName = "Teams Status"
8-
ProductVersion = "1.0.1"
8+
ProductVersion = "1.0.2"
99

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

0 commit comments

Comments
 (0)