Skip to content

Commit 3482155

Browse files
committed
Bumps version to 0.5.2, updates changelog
1 parent 959f261 commit 3482155

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.gitea/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
REGISTRY_PASSWORD: ${{secrets.REGISTRY_ACCESS_TOKEN}}
5656
- name: Generate release body from changelog
5757
run: >
58-
VERSION="$(cat "./bin/dockerfiles/annotations.json" | jq -r '.version')"
58+
VERSION="$(cat "./bin/dockerfiles/annotations.json" | jq -r '.version')";
5959
cat ./CHANGELOG | awk -v version="^# v${VERSION}" '$0 ~ version {start=1;next}/^# v.*$/{start=0}start' > release_body.txt;
6060
cat ./release_body.txt;
6161
- name: Crete draft release with binaries

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# v0.5.2 - July 28, 2025
2+
3+
## Changed
4+
- Client assets are now pre-compressed with Brotli.
5+
- Switched to a custom gauge web component. This shaves off additional 0.5 MiB of unnecessary Js from the bundle. (Though still can't beat TempleOS).
6+
7+
## Fixed
8+
- Attached clients' info does not update after the first initialization.
9+
110
# v0.5.1 - June 25, 2025
211

312
## Fixed

nut_webgui/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nut_webgui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nut_webgui"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55

66
authors = ["Timur Olur <pm@smdd.dev>"]

nut_webgui_client/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nut_webgui_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nut_webgui_client"
3-
version = "0.5.0"
3+
version = "0.5.2"
44
edition = "2024"
55

66
[build-dependencies]

0 commit comments

Comments
 (0)