diff options
| author | Shulhan <ms@kilabit.info> | 2022-03-01 23:21:05 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-03-04 22:47:35 +0700 |
| commit | 67a9fe13806f7698752c31cb626d1bb6b544b91c (patch) | |
| tree | 402dd0bf56d718d8661583651155650cf5516612 /go.mod | |
| parent | cd8ad3533865e852e0144c4497e5226e88c917ba (diff) | |
| download | asciidoctor-go-67a9fe13806f7698752c31cb626d1bb6b544b91c.tar.xz | |
Release asciidoctor-go v0.2.0 (2022-03-04)v0.2.0
This release changes the license of asciidoctor-go from BSD to GPL 3.0 or
later.
=== Bug fixes
* all: fix list check box text get cut one character
+
--
Given the following asciidoc check box markup,
* [ ] abc
It will rendereded as "❏ bc" instead of "❏ abc".
--
=== Chores
* all: replace bytes.Title and strings.Title with function
+
Both of those functions has been deprecated.
+
Since the Title function is used to convert the adminition string into a
human title (first letter uppercase), we can use a function to do that.
Any unknown admonition will be returned as is.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,6 +5,6 @@ module git.sr.ht/~shulhan/asciidoctor-go go 1.16 -require github.com/shuLhan/share v0.34.0 +require github.com/shuLhan/share v0.35.0 //replace github.com/shuLhan/share => ../share |
