diff options
| author | Shulhan <ms@kilabit.info> | 2023-05-14 18:37:47 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-05-14 18:37:47 +0700 |
| commit | bdc97d6b2be0a8bfa0275cb4333a8b72b10dfde3 (patch) | |
| tree | b84b6aed4b576f6b554c73f7b7a268563dba0222 | |
| parent | 30e6ae95384918f5278d94994387b7e80ab4899d (diff) | |
| download | ciigo-0.10.0.tar.xz | |
Release ciigo v0.10.0 (2023-05-14)v0.10.0
=== New features
* all: bring back support for Markdown
I use two remote repositories: GitHub and SourceHut.
GitHub support rendering README using asciidoc while SourceHut not.
This cause the repository that use README.adoc rendered as text in
SourceHut which make the repository page less readable.
Also, the pkg.go.dev now render README but only support Markdown.
Since we cannot control the SourceHut and go.dev, the only option is
to support converting Markdown in ciigo so I can write README using
Markdown and the rest of documentation using Asciidoc.
| -rw-r--r-- | CHANGELOG.adoc | 19 | ||||
| -rw-r--r-- | ciigo.go | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 1b51e8c..a6f5f16 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -7,6 +7,25 @@ Shulhan <ms@kilabit.info> :sectlinks: +[#v0_10_0] +== ciigo v0.10.0 (2023-05-14) + +all: bring back support for Markdown:: ++ +-- +I use two remote repositories: GitHub and SourceHut. +GitHub support rendering README using asciidoc while SourceHut not. +This cause the repository that use README.adoc rendered as text in +SourceHut which make the repository page less readable. + +Also, the pkg.go.dev now render README but only support Markdown. + +Since we cannot control the SourceHut and go.dev, the only option is +to support converting Markdown in ciigo so I can write README using +Markdown and the rest of documentation using Asciidoc. +-- + + [#v0_9_3] == ciigo v0.9.3 (2022-03-03) @@ -27,7 +27,7 @@ const ( ) var ( - Version = `0.9.3` + Version = `0.10.0` defExcludes = []string{ `.*\.adoc$`, |
