From bf87c6ad4824c7ed1c990aeff2d2883936c1f20a Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sat, 27 Dec 2025 20:48:54 +0700 Subject: Release 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 --- CHANGELOG.adoc | 25 +++++++++++++++++++++++++ _www/doc/CHANGELOG.adoc | 1 + lilin.go | 3 +++ 3 files changed, 29 insertions(+) create mode 100644 CHANGELOG.adoc create mode 120000 _www/doc/CHANGELOG.adoc 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 + += 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 diff --git a/lilin.go b/lilin.go index 9ebc385..acf8e21 100644 --- a/lilin.go +++ b/lilin.go @@ -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 -- cgit v1.3