summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.adoc16
-rw-r--r--pakakeh.go2
2 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc
index 84eb5f7e..020f2bb3 100644
--- a/CHANGELOG.adoc
+++ b/CHANGELOG.adoc
@@ -28,8 +28,22 @@ 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_60_1]
+== pakakeh.go v0.60.1 (2025-04-18)
+
+[#v0_60_1__lib_bytes]
+=== lib/bytes
+
+[NEW FEATURE] +
+New method Peek in Parser.
+The Peek method take a look on n bytes inside the buffer without
+using delimiters.
+The returned bytes may empty or have length less than n.
+
+//}}}
+//{{{
[#v0_60_0]
-== pakakeh.go v0.60.0 (2025-02-xx)
+== pakakeh.go v0.60.0 (2025-02-01)
Some changes that affected almost all packages are by replacing
"interface{}" with "any" (added since Go 1.18),
diff --git a/pakakeh.go b/pakakeh.go
index 1669bfa9..d77a6e35 100644
--- a/pakakeh.go
+++ b/pakakeh.go
@@ -7,5 +7,5 @@ package pakakeh
var (
// Version of this module.
- Version = `0.60.0`
+ Version = `0.60.1`
)