~shulhan/karajo

2e8feed8fa8a6791fb50da9a37880d12ff01bf66 — Shulhan 4 days ago 94e82e7 dev main v0.9.3
Release karajo v0.9.3 (2024-12-08)

=== Bug fixes

* env: fix missing ini tag on IsDevelopment field::

* all: fix permission of "/srv/karajo"::

  The content of directory "/srv/karajo" may contains files served to
  public, even internal, so it should be accesible by other user or
  group.

=== Enhancements

* all: return and show the current version in API environment and main
  page

* all: set the module Version during build

  The Version information is derived from latest tag and commit hash.
  This allow command "karajo version" and user interface show on which
  version its currently run.
2 files changed, 26 insertions(+), 1 deletions(-)

M CHANGELOG.adoc
M karajo.go
M CHANGELOG.adoc => CHANGELOG.adoc +25 -0
@@ 4,6 4,31 @@
:sectlinks:


[#v0_9_3]
== karajo v0.9.3 (2024-12-08)

[#v0_9_3__bug_fixes]
=== Bug fixes

env: fix missing ini tag on IsDevelopment field::

all: fix permission of "/srv/karajo"::
+
The content of directory "/srv/karajo" may contains files served to public
even internal, so it should be accesible by other user or group.

[#v0_9_3__enhancements]
=== Enhancements

all: return and show the current version in API environment and main page::

all: set the module Version during build::
+
The Version information is derived from latest tag and commit hash.
This allow command "karajo version" and user interface show on which
version its currently run.


[#v0_9_2]
== karajo v0.9.2 (2024-09-08)


M karajo.go => karajo.go +1 -1
@@ 28,7 28,7 @@ import (
)

// Version of this library and program.
var Version = `0.9.2`
var Version = `0.9.3`

// timeNow return the current time in UTC rounded to second.
// During testing the variable will be replaced to provide static,