aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.adoc
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2020-07-05 20:29:16 +0700
committerShulhan <ms@kilabit.info>2020-07-05 20:29:16 +0700
commit2a480f6b856367ac5cc0102c4ae92eb6814228da (patch)
tree989d03e864f2f80112547d240c5c6302092ccb38 /CHANGELOG.adoc
parent6a85a0994a7c430c436453aff66e85237bb8b3e0 (diff)
downloadciigo-2a480f6b856367ac5cc0102c4ae92eb6814228da.tar.xz
Release ciigo v0.2.0 (2020-07-05)v0.2.0
* all: simplify serving content using function Serve Previously to serve the generated content we call two fucntions: NewServer() and Server.Start(). This changes unexported the internal server, and expose only the Serve() function with the same parameter as NewServer(). * all: embed the HTML template and the stylesheet The parameter for template either in Convert or Generate functions or in CLI now become pure optional, not default to "templates/html.tmpl" anymore. This will minimize steps for user to setup or run the library or program.
Diffstat (limited to 'CHANGELOG.adoc')
-rw-r--r--CHANGELOG.adoc18
1 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 7ae4b4e..a2ce986 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -1,6 +1,20 @@
-# CHANGELOG
+= CHANGELOG
-## ciigo v0.1.1 (2020-03-24)
+== ciigo v0.2.0 (2020-07-05)
+
+* all: simplify serving content using function Serve
+ Previously to serve the generated content we call two fucntions:
+ NewServer() and Server.Start().
+ This changes unexported the internal server, and expose only the Serve()
+ function with the same parameter as NewServer().
+
+* all: embed the HTML template and the stylesheet
+ The parameter for template either in Convert or Generate functions or
+ in CLI now become pure optional, not default to "templates/html.tmpl"
+ anymore.
+ This will minimize steps for user to setup or run the library or program.
+
+== ciigo v0.1.1 (2020-03-24)
The first release support asciidoc and markdown markup language.