From c4cf5cfcaa570069f4f64deff26b390436e2e1c3 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sat, 6 Apr 2024 17:27:27 +0700 Subject: Release kamusku v0.1.0 (2024-04-06) kamusku is the Go module that contains HTTP client library and program as interface to official KBBI server. --- .gitignore | 2 ++ CHANGELOG.adoc | 10 ++++++++++ Makefile | 4 ++++ kamusku.go | 3 +++ 4 files changed, 19 insertions(+) create mode 100644 CHANGELOG.adoc diff --git a/.gitignore b/.gitignore index 4346e29..d3c77fa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ # SPDX-FileCopyrightText: 2024 M. Shulhan # SPDX-License-Identifier: CC0-1.0 +/CHANGELOG.html +/README.html /cover.html /cover.txt diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc new file mode 100644 index 0000000..5328f16 --- /dev/null +++ b/CHANGELOG.adoc @@ -0,0 +1,10 @@ +// SPDX-FileCopyrightText: 2024 M. Shulhan +// SPDX-License-Identifier: GPL-3.0-or-later += kamusku change logs +:toc: +:sectlinks: + +== kamusku v0.1.0 (2024-04-06) + +kamusku is the Go module that contains HTTP client library and program as +interface to official KBBI server. diff --git a/Makefile b/Makefile index f7312d9..4090794 100644 --- a/Makefile +++ b/Makefile @@ -23,3 +23,7 @@ lint: .PHONY: install install: go install ./cmd/kamusku + +.PHONY: serve-docs +serve-docs: + ciigo serve . diff --git a/kamusku.go b/kamusku.go index c964d28..6cc0d3f 100644 --- a/kamusku.go +++ b/kamusku.go @@ -4,3 +4,6 @@ // Package kamusku is the Go library to access the Bahasa Indonesia dictionary // from https://kbbi.kemdikbud.go.id. package kamusku + +// Version of this module. +var Version = `0.1.0` -- cgit v1.3