diff options
| -rw-r--r-- | CHANGELOG.adoc | 13 | ||||
| -rw-r--r-- | go.mod | 6 | ||||
| -rw-r--r-- | go.sum | 7 | ||||
| -rw-r--r-- | template_index_html.go | 2 |
4 files changed, 21 insertions, 7 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index a2ce986..6ad0ff4 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,5 +1,18 @@ = CHANGELOG +== ciigo v0.3.0 (2020-12-06) + +This release replace the asciidoc parsing from libasciidoc-go to +https://sr.ht/~shulhan/asciidoctor-go[asciidoctor-go], which provide more +control and stable APIs. + +We also remove support form markdown markup language and focus only to support +asciidoctor format from now on. + +The Go module path and repository is also moved from github to +git.sr.ht/~shulhan/ciigo. + + == ciigo v0.2.0 (2020-07-05) * all: simplify serving content using function Serve @@ -1,10 +1,10 @@ module git.sr.ht/~shulhan/ciigo -go 1.13 +go 1.14 require ( - git.sr.ht/~shulhan/asciidoctor-go v0.0.0-20201123200439-ea961ec7d812 - github.com/shuLhan/share v0.20.2-0.20201122173411-e8b3bf5ee6e9 + git.sr.ht/~shulhan/asciidoctor-go v0.0.0-20201205130914-be765f32b57b + github.com/shuLhan/share v0.20.2-0.20201205202022-66069b9e49fe ) //replace git.sr.ht/~shulhan/asciidoctor-go => ../asciidoctor-go @@ -1,7 +1,8 @@ -git.sr.ht/~shulhan/asciidoctor-go v0.0.0-20201123200439-ea961ec7d812 h1:+SxD7GySHXoGPBqlNJXNqz/3azM1qH+2QMEar9O3rys= -git.sr.ht/~shulhan/asciidoctor-go v0.0.0-20201123200439-ea961ec7d812/go.mod h1:ejaxKeBMNL5EpP2zjRP4B8zuOr+MM4ZyGwE3y7807WI= -github.com/shuLhan/share v0.20.2-0.20201122173411-e8b3bf5ee6e9 h1:stVl2M1etW0Kix0SSlH0tp5XgH9Ip3SI3cAeQBlhVZo= +git.sr.ht/~shulhan/asciidoctor-go v0.0.0-20201205130914-be765f32b57b h1:kcJmp4awIHV7lKRrRpgh/y1GHCTAANHGwK9OcENjiMM= +git.sr.ht/~shulhan/asciidoctor-go v0.0.0-20201205130914-be765f32b57b/go.mod h1:ejaxKeBMNL5EpP2zjRP4B8zuOr+MM4ZyGwE3y7807WI= github.com/shuLhan/share v0.20.2-0.20201122173411-e8b3bf5ee6e9/go.mod h1:oBv+CGHG6u4Sa71+nJJJji8mCgPAadywjsB3I3k/b0o= +github.com/shuLhan/share v0.20.2-0.20201205202022-66069b9e49fe h1:v0zC26L+aXrB7nSokISTW9/4vZGWMKQJvz+XRVcre1Y= +github.com/shuLhan/share v0.20.2-0.20201205202022-66069b9e49fe/go.mod h1:oBv+CGHG6u4Sa71+nJJJji8mCgPAadywjsB3I3k/b0o= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= diff --git a/template_index_html.go b/template_index_html.go index 9a177a5..2c8eb60 100644 --- a/template_index_html.go +++ b/template_index_html.go @@ -45,7 +45,7 @@ const templateIndexHTML = `<!DOCTYPE html> <div class="footer"> Powered by <a - href="https://git.sr.ht/shulhan/ciigo" + href="https://git.sr.ht/~shulhan/ciigo" > ciigo </a> |
