aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-05-14 18:37:47 +0700
committerShulhan <ms@kilabit.info>2023-05-14 18:37:47 +0700
commitbdc97d6b2be0a8bfa0275cb4333a8b72b10dfde3 (patch)
treeb84b6aed4b576f6b554c73f7b7a268563dba0222
parent30e6ae95384918f5278d94994387b7e80ab4899d (diff)
downloadciigo-bdc97d6b2be0a8bfa0275cb4333a8b72b10dfde3.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.adoc19
-rw-r--r--ciigo.go2
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)
diff --git a/ciigo.go b/ciigo.go
index 1f785db..2978390 100644
--- a/ciigo.go
+++ b/ciigo.go
@@ -27,7 +27,7 @@ const (
)
var (
- Version = `0.9.3`
+ Version = `0.10.0`
defExcludes = []string{
`.*\.adoc$`,