Skip to content

Commit 386858f

Browse files
committed
Bump version to v0.8.7
1 parent 1b75993 commit 386858f

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# v0.8.7 (2025-05-16)
2+
3+
* *(jsonbytes)* Added utility for url-safe base64 to complement the existing
4+
standard unpadded base64 marshaling utility.
5+
* *(exstrings)* Added `LongestSequenceOf` to find the longest sequence of a
6+
single character in a string.
7+
* *(requestlog)* Implemented `Flush` in `CountingResponseWriter` to fix flushing
8+
HTTP response buffer when using request logging.
9+
* *(exhttp)* Added utility for checking if a given error is a network error or
10+
an http2 stream error.
11+
112
# v0.8.6 (2025-03-16)
213

314
* *(curl)* Added support for parsing cookies set using the `-b` flag, which

util.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
package util
88

9-
const Version = "v0.8.6"
9+
const Version = "v0.8.7"
1010

1111
func VersionArray() [3]uint {
12-
return [3]uint{0, 8, 6}
12+
return [3]uint{0, 8, 7}
1313
}

0 commit comments

Comments
 (0)