diff options
| -rw-r--r-- | CHANGELOG.adoc | 25 | ||||
| l--------- | _www/doc/CHANGELOG.adoc | 1 | ||||
| -rw-r--r-- | lilin.go | 3 |
3 files changed, 29 insertions, 0 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc new file mode 100644 index 0000000..c1e45aa --- /dev/null +++ b/CHANGELOG.adoc @@ -0,0 +1,25 @@ +// SPDX-License-Identifier: GPL-3.0-only +// SPDX-FileCopyrightText: 2025 M. Shulhan <ms@kilabit.info> + += lilin releases changelog +:sectanchors: +:toc: + +Change log of each release of the lilin software. +The latest release log is put on the top. + +Legend, + +* 🪵: Breaking changes +* 🌱: New feature +* 🌼: Enhancement +* 💧: Chores + +[#lilin_v0_1_0] +== lilin v0.1.0 (2025-12-27) + +This is the first release of lilin project with the following features, + +* Monitoring HTTP, TCP, UDP services +* Sending notification when service up or down through, +** Mattermost incoming webhook diff --git a/_www/doc/CHANGELOG.adoc b/_www/doc/CHANGELOG.adoc new file mode 120000 index 0000000..dbe8cbb --- /dev/null +++ b/_www/doc/CHANGELOG.adoc @@ -0,0 +1 @@ +../../CHANGELOG.adoc
\ No newline at end of file @@ -8,6 +8,9 @@ import ( "time" ) +// Version latest released version. +const Version = `0.1.0` + // defTimeout define default timeout for service and client connection. const defTimeout = 5 * time.Second |
