aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-12-27 20:48:54 +0700
committerShulhan <ms@kilabit.info>2025-12-27 20:48:54 +0700
commitbf87c6ad4824c7ed1c990aeff2d2883936c1f20a (patch)
tree3346eba846375d3f4b085acd7208d90dd9b8784a
parent5770c17fee881aa73da41648aa325a24d95fa3ea (diff)
downloadlilin-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.adoc25
l---------_www/doc/CHANGELOG.adoc1
-rw-r--r--lilin.go3
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
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