diff options
| author | Shulhan <ms@kilabit.info> | 2025-12-27 16:08:08 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-12-27 16:08:08 +0700 |
| commit | 3bbfcd5d598f0aa0f4d1f840f3ba7df4a74dbe5c (patch) | |
| tree | 0292c1196ed25b8c527b6cae0a9d01b9c1457623 /rescached.go | |
| parent | 2d1060cf6c5026f8bebfcd3f98910c477973ba52 (diff) | |
| download | rescached-4.4.4.tar.xz | |
Release rescached v4.4.4 (2025-12-27)v4.4.4
This release mostly chores.
**💧 all: replace golangci-lint with "go vet"**
**💧 all: replace debug package with internal Debug variabel**
The [debug.Value] will be removed in the next release of pakakeh.go.
**💧 internal/cmd/gocheck: add internal static analyzers**
Instead of using binary fieldalignment and shadow, run them by creating
command that call the same Analyzer internally.
This analyzers help finding possible panic on httpd.go.
**💧 make: remove build task from install tasks**
The build task should be run by user, while install tasks run by root.
If we make build depends on install then the binaries will rebuild by
user root.
**💧 Makefile: do not run "embed" when building rescached**
The embed command should be run once when the assets file in _www changes.
**💧 all: cleaning README and expand the index in documentation**
In the README, we remove the EXIT STATUS and AUTHOR sections.
Those sections are not informative.
In the index, we expand the preamble to include short information about
what is rescached.
**💧 make: fix building resolver**
Seems like the "go tool doc" subcommand has been removed on latest
release of Go.
Diffstat (limited to 'rescached.go')
| -rw-r--r-- | rescached.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescached.go b/rescached.go index feda6c6..23eefbf 100644 --- a/rescached.go +++ b/rescached.go @@ -18,7 +18,7 @@ import ( ) // Version of program, overwritten by build. -var Version = `4.4.3` +var Version = `4.4.4` // Debug level, set by configuration as "rescached::debug". var Debug int |
