diff options
| -rw-r--r-- | _doc/CHANGELOG.adoc | 46 | ||||
| -rw-r--r-- | asciidoctor.go | 2 |
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() { |
