diff options
| author | Shulhan <ms@kilabit.info> | 2025-12-27 20:48:54 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-12-27 20:48:54 +0700 |
| commit | bf87c6ad4824c7ed1c990aeff2d2883936c1f20a (patch) | |
| tree | 3346eba846375d3f4b085acd7208d90dd9b8784a | |
| parent | 5770c17fee881aa73da41648aa325a24d95fa3ea (diff) | |
| download | lilin-bf87c6ad4824c7ed1c990aeff2d2883936c1f20a.tar.xz | |
Release lilin v0.1.0 (2025-12-27)v0.1.0
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
| -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 |
