From 554fd460dac71943b4a0875d99621e109d844912 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Fri, 18 Apr 2025 20:04:59 +0700 Subject: Release ciigo v0.15.2 (2025-04-18) This release update the core asciidoctor-go module that brings several new features. [NEW FEATURE] **Support include directive inside block code.** Example of block code with include directive, ---- ... include::file[] ... ---- [NEW FEATURE] **Support document attribute "docdir".** The "docdir" attribute contains the full path of the directory that contains the source document. By default it is set to the directory where the Document resided. [NEW FEATURE] **Add default HTML stylesheet**. The generated HTML now contains the default stylesheet. The stylesheet is copied from HTML file generated by Asciidoctor v2.0.23. --- CHANGELOG.adoc | 29 +++++++++++++++++++++++++++++ ciigo.go | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index ca9cb60..218a105 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -7,6 +7,35 @@ Shulhan :sectlinks: +[#v0_15_2] +== ciigo v0.15.2 (2025-04-18) + +This release update the core asciidoctor-go module that brings several new +features. + +[NEW FEATURE] **Support include directive inside block code.** + +Example of block code with include directive, + +---- +... +include::file[] +... +---- + +[NEW FEATURE] **Support document attribute "docdir".** + +The "docdir" attribute contains the full path of the directory that +contains the source document. +By default it is set to the directory where the Document resided. + +[NEW FEATURE] **Add default HTML stylesheet**. + +The generated HTML now contains the default stylesheet. +The stylesheet is copied from HTML file generated by Asciidoctor +v2.0.23. + + [#v0_15_1] == ciigo v0.15.1 (2025-02-01) diff --git a/ciigo.go b/ciigo.go index a516947..792a2cf 100644 --- a/ciigo.go +++ b/ciigo.go @@ -28,7 +28,7 @@ const ( ) // Version define the latest tagged release of this module. -var Version = `0.15.1` +var Version = `0.15.2` // defExcludes define default files to be excludes on GoEmbed. var defExcludes = []string{ -- cgit v1.3