From cfa3ae54e40a1d8ddf24fb98762596180aab3bfd Mon Sep 17 00:00:00 2001 From: Shulhan Date: Sat, 7 Sep 2024 17:50:18 +0700 Subject: Release ciigo v0.13.2 (2024-09-07) Update on asciidoctor-go bring new features and enhancements, * Support document attribute "leveloffset". The ":leveloffset:" on document attribute allow increment or decrement the heading level on included files. Reference: https://docs.asciidoctor.org/asciidoc/latest/directives/include-with-leveloffset/ * Use strict document header format. Previously, an empty line before Document Title cause the parser stop parsing the document header, now an empty lines are skipped. Also document attribute can be place anywhere, either before or after title, and in between attributes; now it can be only placed after revision or author or title. --- CHANGELOG.adoc | 25 +++++++++++++++++++++++++ ciigo.go | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 934ddf8..a088dbf 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -6,6 +6,31 @@ Shulhan :sectanchors: :sectlinks: + +[#v0_13_2] +== ciigo v0.13.2 (2024-09-07) + +Update on asciidoctor-go bring new features and enhancements, + +* Support document attribute "leveloffset". ++ +-- +The ":leveloffset:" on document attribute allow increment or decrement +the heading level on included files. + +Reference: https://docs.asciidoctor.org/asciidoc/latest/directives/include-with-leveloffset/ +-- + +* Use strict document header format. ++ +Previously, an empty line before Document Title cause the parser +stop parsing the document header, now an empty lines are skipped. +Also document attribute can be place anywhere, either before or after +title, and in between attributes; now it can be only placed after +revision or author or title. + + + [#v0_13_1] == ciigo v0.13.1 (2024-08-04) diff --git a/ciigo.go b/ciigo.go index cd857e4..cdfccff 100644 --- a/ciigo.go +++ b/ciigo.go @@ -27,7 +27,7 @@ const ( ) // Version define the latest tagged release of this module. -var Version = `0.13.1` +var Version = `0.13.2` // defExcludes define default files to be excludes on GoEmbed. var defExcludes = []string{ -- cgit v1.3