aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.adoc
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-12-27 15:20:29 +0700
committerShulhan <ms@kilabit.info>2025-12-27 15:20:29 +0700
commit56fee32af1615249691bd09893655fd8e45fe9ca (patch)
treecfc49a546c8a8e88d3637ec6fed5e1518719bda0 /CHANGELOG.adoc
parentbfd37da4caf80514bccb73fd865f91582e5a22e2 (diff)
downloadkamusku-56fee32af1615249691bd09893655fd8e45fe9ca.tar.xz
Release kamusku v0.1.1 (2025-12-27)HEADv0.1.1main
**🌼 all: fix logging in client tests** **💧 all: replace golangci-lint with internal linter** The internal/cmd/gocheck use the go static analysis [Analyzer] that are not included in the default go vet. By using gocheck we found un-alignment and shadowing, * client.go:18:13: struct with 24 pointer bytes could be 16 * dictionary.go:23:17: struct with 32 pointer bytes could be 16 * client_test.go:18:13: struct with 56 pointer bytes could be 48 * client_test.go:62:13: struct with 56 pointer bytes could be 48 * cmd/kamusku-telegram-bot/main.go:31:3: declaration of "err" shadows declaration at line 25 * kamusku_test.go:49:3: declaration of "err" shadows declaration at line 38 [Analyzer]: https://pkg.go.dev/golang.org/x/tools/go/analysis#hdr-Analyzer **💧 README: add section about development and license** **💧 all: fix test due to missing testdata directory**
Diffstat (limited to 'CHANGELOG.adoc')
-rw-r--r--CHANGELOG.adoc43
1 files changed, 40 insertions, 3 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 7febec2..63595b6 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -1,7 +1,47 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+// SPDX-FileCopyrightText: 2024 M. Shulhan <ms@kilabit.info>
= kamusku changelog
:toc:
:sectlinks:
+Change log of each release of the kamusku software.
+The latest release log is put on the top.
+
+Legend,
+
+* 🪵: Breaking changes
+* 🌱: New feature
+* 🌼: Enhancement
+* 💧: Chores
+
+
+[#kamusku_v0_1_1]
+== kamusku v0.1.1 (2025-12-27)
+
+**🌼 all: fix logging in client tests**
+
+**💧 all: replace golangci-lint with internal linter**
+
+The internal/cmd/gocheck use the go static analysis [Analyzer] that are
+not included in the default go vet.
+
+By using gocheck we found un-alignment and shadowing,
+
+* client.go:18:13: struct with 24 pointer bytes could be 16
+* dictionary.go:23:17: struct with 32 pointer bytes could be 16
+* client_test.go:18:13: struct with 56 pointer bytes could be 48
+* client_test.go:62:13: struct with 56 pointer bytes could be 48
+* cmd/kamusku-telegram-bot/main.go:31:3: declaration of "err" shadows
+ declaration at line 25
+* kamusku_test.go:49:3: declaration of "err" shadows declaration at
+ line 38
+
+[Analyzer]: https://pkg.go.dev/golang.org/x/tools/go/analysis#hdr-Analyzer
+
+**💧 README: add section about development and license**
+
+**💧 all: fix test due to missing testdata directory**
+
[#kamusku_v0_1_0]
== kamusku v0.1.0 (2024-04-06)
@@ -14,6 +54,3 @@ There are two services provided by this project:
- kamusd: the HTTP server as proxy to KBBI server.
- kamusku-telegram-bot: Telegram bot as interface to HTTP server.
-
-// SPDX-FileCopyrightText: 2024 M. Shulhan <ms@kilabit.info>
-// SPDX-License-Identifier: GPL-3.0-or-later