aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.adoc
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2022-03-04 23:12:22 +0700
committerShulhan <ms@kilabit.info>2022-03-04 23:12:22 +0700
commit1ab3780a49f97ba3c8e14a62b78e57456bae9c9d (patch)
tree4b681695bb2a59fceb90916f4e6ac03f5937ecd4 /CHANGELOG.adoc
parent09ab0af3e9f48c173fb32a7a148c6b11fc4782f4 (diff)
downloadciigo-1ab3780a49f97ba3c8e14a62b78e57456bae9c9d.tar.xz
Release ciigo v0.8.0 (2022-03-04)v0.8.0
09ab0af all: re-convert markup files if HTML template is newer on GoEmbed 753642c all: add 1em to the bottom margin of paragraph under list 0d59995 all: update asciidoctor-go and share modules to latest version 88478fd all: re-licensing ciigo under GPL-3.0 or later a6c335c go.mod: update share module to the tip 61fa9a7 all: realign all structs fdc5579 all: fix adoc files not re-converted when template file changes 41117b4 all: add option IsDevelopment to ServeOptions 42e9c24 go.mod: update module asciidoctor-go to the tip ce2af85 Makefile: set CGO_ENABLED to 1 when running test
Diffstat (limited to 'CHANGELOG.adoc')
-rw-r--r--CHANGELOG.adoc47
1 files changed, 47 insertions, 0 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 5e8c567..02063ed 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -1,6 +1,53 @@
// SPDX-FileCopyrightText: 2020 Shulhan <ms@kilabit.info>
// SPDX-License-Identifier: GPL-3.0-or-later
= Changelog for ciigo
+Shulhan <ms@kilabit.info>
+:toc:
+:sectanchors:
+:sectlinks:
+
+[#v0.8.0]
+== ciigo v0.8.0 (2022-03-04)
+
+This release changes the license of this software to GPL-3.0 or later.
+
+[#v0.8.0_bug_fixes]
+=== Bug fixes
+
+* all: fix adoc files not re-converted when template file changes
++
+In commit 06d03f6afe37 we skip converting files if the generated HTML
+is newer than adoc file.
++
+This cause an issue where the template file changes during Watch or
+Serve, but the HTML files is not regenerated.
+
+* go.mod: update module asciidoctor-go to the tip
++
+The latest tip fix rendering list check box text that get cut one
+character in the beginning.
+
+[#v0.8.0_enhancements]
+=== Enhancements
+
+* all: re-convert markup files if HTML template is newer on GoEmbed
++
+Calling GoEmbed with updated HTML template will reconvert all markup
+files automatically, as long as the generated Go file is older than
+the HTML template file.
+
+* all: add 1em to the bottom margin of paragraph under list
++
+This is to make the list content readable and indistinguishable,
+especially when we have many list items with paragraphs.
+
+* all: add option IsDevelopment to ServeOptions
++
+If the IsDevelopment option set to true, the serve function will serve
+the root directory directly and watch all asciidoc files for changes
+and convert it.
++
+This is like running Watch, Convert and Serve at the same time.
== ciigo v0.7.1 (2022-01-10)