diff options
| author | Shulhan <ms@kilabit.info> | 2023-12-14 15:49:35 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-12-14 15:50:36 +0700 |
| commit | b97be92c238e766dafa80dcfeae92987f016b895 (patch) | |
| tree | b153ae3813af209fc581b169351bd1cbff24f601 | |
| parent | 65735d94885752c06f369d46c8edd9abbc1ec5a0 (diff) | |
| download | ciigo-b97be92c238e766dafa80dcfeae92987f016b895.tar.xz | |
Release ciigo v0.11.0 (2023-12-14)v0.11.0
=== Breaking changes
* Field [ConvertOptions.HtmlTemplate] become [ConvertOptions.HTMLTemplate]
* Method [Converter.SetHtmlTemplateFile] become
[Converter.SetHTMLTemplateFile]
* Method [Converter.ToHtmlFile] become [Converter.ToHTMLFile]
=== Bug fix
* asciidoc: fix custom ID on the first section not applied correctly
| -rw-r--r-- | CHANGELOG.adoc | 16 | ||||
| -rw-r--r-- | ciigo.go | 2 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 | ||||
| -rw-r--r-- | testdata/watcher_test.txt | 4 |
5 files changed, 22 insertions, 6 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index e2c4960..4655608 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -4,6 +4,22 @@ Shulhan <ms@kilabit.info> :sectanchors: :sectlinks: +[#v0_11_0] +== ciigo v0.11.0 (2023-12-14) + +[#v0_11_0__breaking_changes] +=== Breaking changes + +* Field [ConvertOptions.HtmlTemplate] become [ConvertOptions.HTMLTemplate] +* Method [Converter.SetHtmlTemplateFile] become + [Converter.SetHTMLTemplateFile] +* Method [Converter.ToHtmlFile] become [Converter.ToHTMLFile] + +[#v0_11_0] +=== Bug fixes + +* asciidoc: fix custom ID on the first section not applied correctly + [#v0_10_1] == ciigo v0.10.1 (2023-11-06) @@ -27,7 +27,7 @@ const ( ) // Version define the latest tagged release of this module. -var Version = `0.10.1` +var Version = `0.11.0` // defExcludes define default files to be excludes on GoEmbed. var defExcludes = []string{ @@ -6,7 +6,7 @@ module git.sr.ht/~shulhan/ciigo go 1.20 require ( - git.sr.ht/~shulhan/asciidoctor-go v0.5.1-0.20231213112841-008230e7e722 + git.sr.ht/~shulhan/asciidoctor-go v0.5.1 github.com/shuLhan/share v0.51.0 github.com/yuin/goldmark v1.6.0 github.com/yuin/goldmark-meta v1.1.0 @@ -1,5 +1,5 @@ -git.sr.ht/~shulhan/asciidoctor-go v0.5.1-0.20231213112841-008230e7e722 h1:lIN48+M5mgV9VSYpQyt1eieEysdMLCshVV1Bphw9OW8= -git.sr.ht/~shulhan/asciidoctor-go v0.5.1-0.20231213112841-008230e7e722/go.mod h1:5audSCN6jDr2+/cMvx1MdZxkCurjl/k6A5OGYWRtB0o= +git.sr.ht/~shulhan/asciidoctor-go v0.5.1 h1:TuuLo+N61+qsXkiFgtiW5W1q7xHzeSID4zH+ci5J8ic= +git.sr.ht/~shulhan/asciidoctor-go v0.5.1/go.mod h1:5audSCN6jDr2+/cMvx1MdZxkCurjl/k6A5OGYWRtB0o= github.com/shuLhan/share v0.51.0 h1:WPKRNNWnZPaVTi/o6nUdkAePek2Lbjz5baoq8MU1U+I= github.com/shuLhan/share v0.51.0/go.mod h1:Zn0zwUdSuu7L2BKaYkVOXwbwxd5Kn6Y2bhohD9Tf0Sc= github.com/yuin/goldmark v1.6.0 h1:boZcn2GTjpsynOsC0iJHnBWa4Bi0qzfJjthwauItG68= diff --git a/testdata/watcher_test.txt b/testdata/watcher_test.txt index e1f611a..a4a04c1 100644 --- a/testdata/watcher_test.txt +++ b/testdata/watcher_test.txt @@ -8,7 +8,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#375EAB"> - <meta name="generator" content="asciidoctor-go 0.5.0"> + <meta name="generator" content="asciidoctor-go 0.5.1"> <title>watch create</title> <style> body{} @@ -50,7 +50,7 @@ Hello, body. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#375EAB"> - <meta name="generator" content="asciidoctor-go 0.5.0"> + <meta name="generator" content="asciidoctor-go 0.5.1"> <meta name="keywords" content="ciigo,asciidoc"> <title>watch updated</title> <link rel="stylesheet" href="/path/to/style.css"> |
