summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2022-09-05 20:24:19 +0700
committerShulhan <ms@kilabit.info>2022-09-05 20:24:19 +0700
commitc06ee9cee05df478b00d5605f9432f23ce6d40f9 (patch)
treebdd5ce0426ebaa9461e4b153867bea707d7d2448
parentf38aeaf416e75972be1654592c600d6c3b2cd461 (diff)
downloadasciidoctor-go-c06ee9cee05df478b00d5605f9432f23ce6d40f9.tar.xz
Release asciidoctor-go v0.3.2 (2022-09-05)v0.3.2
=== Bug fix * all: fix parsing list description inside include directive === Chores * all: update share module to v0.41.0 * all: move all documentation into directory _doc
-rw-r--r--_doc/CHANGELOG.adoc46
-rw-r--r--asciidoctor.go2
2 files changed, 47 insertions, 1 deletions
diff --git a/_doc/CHANGELOG.adoc b/_doc/CHANGELOG.adoc
index 86054d8..ec00396 100644
--- a/_doc/CHANGELOG.adoc
+++ b/_doc/CHANGELOG.adoc
@@ -8,6 +8,52 @@ Shulhan <ms@kilabit.info>
:sectlinks:
+[#v0_3_2]
+== asciidoctor-go v0.3.2 (2022-09-05)
+
+[#v0_3_2_bug_fix]
+=== Bug fix
+
+all: fix parsing list description inside include directive::
++
+--
+Previously, given the following include statements in the main document
+
+----
+include::list_desc.adoc[]
+
+include::list_desc.adoc[]
+----
+
+Where list_desc.adoc content is,
+
+----
+Item 00::
++
+--
+* Bullet 0
++
+Description 0.
+
+* Bullet 1
+--
+----
+
+The first include is parsed correctly, but the second include is parsed
+as is.
+--
+
+[#v0_3_2_chores]
+=== Chores
+
+all: update share module to v0.41.0::
+
+all: move all documentation into directory _doc::
++
+While at it reformat the README, add section for development, add
+link for Go documentation.
+
+
[#v0_3_1]
== asciidoctor-go v0.3.1 (2022-08-06)
diff --git a/asciidoctor.go b/asciidoctor.go
index b6601cf..7772354 100644
--- a/asciidoctor.go
+++ b/asciidoctor.go
@@ -6,7 +6,7 @@ package asciidoctor
import "github.com/shuLhan/share/lib/math/big"
const (
- Version = `0.3.1`
+ Version = `0.3.2`
)
func init() {