Skip to content

Commit 55b6cc8

Browse files
committed
Create v0.2.9 release, add latest tag to images
1 parent a924932 commit 55b6cc8

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,6 @@ jobs:
7979
context: .
8080
platforms: linux/amd64,linux/arm64
8181
push: true
82-
tags: ghcr.io/supleed2/go-chat:${{ github.ref_name }}
82+
tags: |
83+
ghcr.io/supleed2/go-chat:${{ github.ref_name }}
84+
ghcr.io/supleed2/go-chat:latest

changelog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
### Security
2121

22+
## [0.2.9] - 2025-10-24
23+
24+
### Fixed
25+
26+
- Add `latest` tag to container images
27+
2228
## [0.2.8] - 2025-10-24
2329

2430
### Fixed
@@ -113,7 +119,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
113119
- Go programs for [client](./tui/main.go) and [server](./server/main.go)
114120
- GitHub Actions release flow, including binaries
115121

116-
[unreleased]: https://github.com/supleed2/go-chat/compare/v0.2.8...HEAD
122+
[unreleased]: https://github.com/supleed2/go-chat/compare/v0.2.9...HEAD
123+
[0.2.9]: https://github.com/supleed2/go-chat/releases/tag/v0.2.9
117124
[0.2.8]: https://github.com/supleed2/go-chat/releases/tag/v0.2.8
118125
[0.2.7]: https://github.com/supleed2/go-chat/releases/tag/v0.2.7
119126
[0.2.6]: https://github.com/supleed2/go-chat/releases/tag/v0.2.6

client/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ type args struct {
7676
}
7777

7878
func (a *args) Version() string {
79-
return "v0.2.8"
79+
return "v0.2.9"
8080
}
8181

8282
func (a *args) Description() string {

server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const createRoomTable = "CREATE TABLE IF NOT EXISTS %s (tim DATETIME, id TEXT, m
6464
const insertRoomMsg = "INSERT INTO %v (tim, id, msg) VALUES (:tim, :id, :msg)"
6565

6666
func (a *args) Version() string {
67-
return "v0.2.8"
67+
return "v0.2.9"
6868
}
6969

7070
func (a *args) Description() string {

0 commit comments

Comments
 (0)