From 5b029c78ea1563f733c142957dc183626598393d Mon Sep 17 00:00:00 2001 From: Shulhan Date: Fri, 18 Apr 2025 14:32:48 +0700 Subject: Release pakakeh.go v0.60.1 (2025-04-18) === 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. --- CHANGELOG.adoc | 16 +++++++++++++++- pakakeh.go | 2 +- 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 @@ -27,9 +27,23 @@ This is changelog for `pakakeh.go` module since v0.12.0 until v0.21.0. 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` ) -- cgit v1.3