summaryrefslogtreecommitdiff
path: root/CHANGELOG.adoc
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-04-18 14:32:48 +0700
committerShulhan <ms@kilabit.info>2025-04-18 14:32:48 +0700
commit5b029c78ea1563f733c142957dc183626598393d (patch)
tree9558e8bb7af95421bacc4056d0d7963877ecc2ca /CHANGELOG.adoc
parent882b2964a6f11cf1f21ebb374740cffed10a35e6 (diff)
downloadpakakeh.go-0.60.1.tar.xz
Release pakakeh.go v0.60.1 (2025-04-18)v0.60.1
=== lib/bytes [NEW FEATURE] Add method Peek to 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.
Diffstat (limited to 'CHANGELOG.adoc')
-rw-r--r--CHANGELOG.adoc16
1 files changed, 15 insertions, 1 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),