Skip to content

Commit 01c51dc

Browse files
committed
release: 0.5.0
chore: ignore releases in changelog notes
1 parent 9c13ac5 commit 01c51dc

File tree

3 files changed

+66
-25
lines changed

3 files changed

+66
-25
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 43 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Teams Status - RS
22

3+
## [0.5.0] - 2024-04-11
4+
5+
### πŸ› Bug Fixes
6+
- Prevent sending additional updates
7+
- Temporarily build with a local home-assistant-rest dep as it includes non-published fixes, fixes #21
8+
9+
### πŸ“š Documentation
10+
- Add HA persistent entities setup, fixes #15
11+
12+
### ⚑ Performance
13+
- Update is_in_meeting and is_video_on first as the HA calls can take some time and create delays in automations
14+
15+
### βš™οΈ Miscellaneous Tasks
16+
- 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.
17+
- 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.
18+
- Remove unoptimized build settings
19+
- Update deps
20+
- Add logging
21+
22+
323
## [0.4.1] - 2024-03-27
424

525
### πŸ› Bug Fixes
@@ -9,16 +29,17 @@
929
- Convert from using release-plz to git-cliff as it fits my needs better for this type of application
1030
- Update dependencies
1131

12-
### Release
13-
- V0.4.1 with rust v1.77
14-
1532

1633
## [0.4.0] - 2024-03-13
1734

1835
### πŸš€ Features
1936
- (mqtt) Allow use of 'mqtt://' prefix in URL, which will be removed and saved back to conf.ini
37+
- (mqtt) Allow use of 'mqtt://' prefix in URL, which will be removed and saved back to conf.ini
2038
- Log panics to facilitate locating run-time errors
2139

40+
### πŸ› Bug Fixes
41+
- (mqtt) Allow use of 'mqtt://' prefix in URL, which will be removed and saved back to conf.ini
42+
2243
### 🚜 Refactor
2344
- (teams_ws) Rename files to make way for log parser
2445

@@ -39,9 +60,11 @@
3960

4061
### πŸš€ Features
4162
- Addition of new entities (all that are in the Teams API) for both HA and MQTT
63+
- Addition of new entities (all that are in the Teams API) for both HA and MQTT
4264

4365
### 🚜 Refactor
4466
- Fix warning
67+
- Addition of new entities (all that are in the Teams API) for both HA and MQTT
4568

4669
### βš™οΈ Miscellaneous Tasks
4770
- Bump version to 0.3.0
@@ -51,6 +74,8 @@
5174

5275
### πŸš€ Features
5376
- Retain mqtt messages
77+
- Retain mqtt messages
78+
- Retain mqtt messages
5479

5580
### πŸ› Bug Fixes
5681
- Prevent application from crashing if Teams is closed while running
@@ -66,4 +91,19 @@
6691
- Dependabot[bot] <support@github.com>
6792

6893

94+
## [0.2.2] - 2023-11-20
95+
96+
97+
## [0.2.1] - 2023-11-20
98+
99+
100+
## [0.2.0] - 2023-11-19
101+
102+
103+
## [0.1.0] - 2023-11-16
104+
105+
### πŸ› Bug Fixes
106+
- Fix wrong value used for video boolean, ensure there is an initial update when opening the app
107+
108+
69109
<!-- 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 = "0.4.1"
3+
version = "0.5.0"
44
edition = "2021"
55

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

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

β€Žcliff.tomlβ€Ž

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ footer = """
3535
trim = true
3636
# postprocessors
3737
postprocessors = [
38-
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
38+
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
3939
]
4040

4141
[git]
@@ -47,28 +47,29 @@ filter_unconventional = true
4747
split_commits = true
4848
# regex for preprocessing the commit messages
4949
commit_preprocessors = [
50-
# Replace issue numbers
51-
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
52-
# Check spelling of the commit with https://github.com/crate-ci/typos
53-
# If the spelling is incorrect, it will be automatically fixed.
54-
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
50+
# Replace issue numbers
51+
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
52+
# Check spelling of the commit with https://github.com/crate-ci/typos
53+
# If the spelling is incorrect, it will be automatically fixed.
54+
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
5555
]
5656
# regex for parsing and grouping commits
5757
commit_parsers = [
58-
{ message = "^feat", group = "<!-- 0 -->πŸš€ Features" },
59-
{ message = "^fix", group = "<!-- 1 -->πŸ› Bug Fixes" },
60-
{ message = "^doc", group = "<!-- 3 -->πŸ“š Documentation" },
61-
{ message = "^perf", group = "<!-- 4 -->⚑ Performance" },
62-
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
63-
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
64-
{ message = "^test", group = "<!-- 6 -->πŸ§ͺ Testing" },
65-
{ message = "^chore\\(release\\):", skip = true },
66-
{ message = "^chore\\(deps.*\\)", skip = true },
67-
{ message = "^chore\\(pr\\)", skip = true },
68-
{ message = "^chore\\(pull\\)", skip = true },
69-
{ message = "^chore|^ci", group = "<!-- 7 -->βš™οΈ Miscellaneous Tasks" },
70-
{ body = ".*security", group = "<!-- 8 -->πŸ›‘οΈ Security" },
71-
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
58+
{ message = "^feat", group = "<!-- 0 -->πŸš€ Features" },
59+
{ message = "^fix", group = "<!-- 1 -->πŸ› Bug Fixes" },
60+
{ message = "^doc", group = "<!-- 3 -->πŸ“š Documentation" },
61+
{ message = "^perf", group = "<!-- 4 -->⚑ Performance" },
62+
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
63+
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },
64+
{ message = "^test", group = "<!-- 6 -->πŸ§ͺ Testing" },
65+
{ message = "^chore\\(release\\):", skip = true },
66+
{ message = "^release:", skip = true },
67+
{ message = "^chore\\(deps.*\\)", skip = true },
68+
{ message = "^chore\\(pr\\)", skip = true },
69+
{ message = "^chore\\(pull\\)", skip = true },
70+
{ message = "^chore|^ci", group = "<!-- 7 -->βš™οΈ Miscellaneous Tasks" },
71+
{ body = ".*security", group = "<!-- 8 -->πŸ›‘οΈ Security" },
72+
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
7273
]
7374
# protect breaking changes from being skipped due to matching a skipping commit_parser
7475
protect_breaking_commits = false

0 commit comments

Comments
Β (0)