aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-02-01 08:55:54 +0700
committerShulhan <ms@kilabit.info>2025-02-01 09:06:35 +0700
commit3597269b177017c3d35896d9ff12f15af616a72c (patch)
treecb5c837e766a82b9ceb0e03d277233f9011dd562
parent566a5f9ce9b200c71b04784919befb747720629e (diff)
downloadasciidoctor-go-3597269b177017c3d35896d9ff12f15af616a72c.tar.xz
Release asciidoctor-go v0.6.2 (2025-02-01)v0.6.2
[BUG FIX] Fix section detected as paragraph after list and comment. Previously, given the following markup, ---- * Sub list + Sub list content. //}}} //{{{ == Sub 2 //}} ---- The section "Sub 2" will be parsed as paragraph instead of new section. [CHORE] In the linter, we replace the fieldalignment and shadow using our internal gocheck command. This linters actually have an API that can be combined into a program, which provided by package "pakakeh.go/lib/goanalysis".
-rw-r--r--CHANGELOG25
-rw-r--r--asciidoctor.go2
2 files changed, 26 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 63df735..f1d8dae 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -6,6 +6,31 @@ Shulhan <ms@kilabit.info>
:sectlinks:
+[#v0_6_2]
+== asciidoctor-go v0.6.2 (2025-02-01)
+
+[BUG FIX]
+Fix section detected as paragraph after list and comment.
+Previously, given the following markup,
+----
+* Sub list
++
+Sub list content.
+
+//}}}
+//{{{
+== Sub 2
+//}}
+----
+The section "Sub 2" will be parsed as paragraph instead of new section.
+
+[CHORE]
+In the linter, we replace the fieldalignment and shadow using our internal
+gocheck command.
+This linters actually have an API that can be combined into a program,
+which provided by package "pakakeh.go/lib/goanalysis".
+
+
[#v0_6_1]
== asciidoctor-go v0.6.1 (2024-12-08)
diff --git a/asciidoctor.go b/asciidoctor.go
index 8ddfdc4..c894409 100644
--- a/asciidoctor.go
+++ b/asciidoctor.go
@@ -11,7 +11,7 @@ import "git.sr.ht/~shulhan/pakakeh.go/lib/math/big"
const (
// Version of this module.
- Version = `0.6.1`
+ Version = `0.6.2`
_lf = "\n"
)