summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-06-20 02:12:54 +0700
committerShulhan <ms@kilabit.info>2024-06-20 02:12:54 +0700
commit3594debcc137b2536477f01f00705aa700b4d653 (patch)
tree64a0fd7d0148fe0496720daebd61f69c5dc14586
parent81b670e6154feba35d29ff9e7d590fa3ba39650d (diff)
downloadpakakeh.go-3594debcc137b2536477f01f00705aa700b4d653.tar.xz
Release pakakeh.go v0.55.1 (2024-06-20)v0.55.1
=== Enhancements * lib/http: add request type HTML The RequestTypeHTML define the content type "text/html". * lib/path: add method Path to Route Unlike String method that may return the key’s name in returned path, the Path method return the path with all the keys has been substituted with values, even if its empty.
-rw-r--r--CHANGELOG.adoc17
-rw-r--r--pakakeh.go2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index e5ba6acb..4cbac439 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -20,6 +20,23 @@ link:CHANGELOG_2018-2019.html[Changelog from 2018 to 2019^].
This is changelog for `pakakeh.go` module since v0.1.0 until v0.11.0.
+[#v0_55_1]
+== pakakeh.go v0.55.1 (2024-06-20)
+
+[#v0_55_1__enhancements]
+=== Enhancements
+
+lib/http: add request type HTML::
++
+The RequestTypeHTML define the content type "text/html".
+
+lib/path: add method Path to Route::
++
+Unlike String method that may return the key's name in returned path,
+the Path method return the path with all the keys has been substituted
+with values, even if its empty.
+
+
[#v0_55_0]
== pakakeh.go v0.55.0 (2024-05-04)
diff --git a/pakakeh.go b/pakakeh.go
index 42e702b7..89dc8222 100644
--- a/pakakeh.go
+++ b/pakakeh.go
@@ -8,5 +8,5 @@ package pakakeh
var (
// Version of this module.
- Version = `0.55.0`
+ Version = `0.55.1`
)