We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05faced commit 42bc272Copy full SHA for 42bc272
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+# v0.8.6 (2025-03-16)
2
+
3
+* *(curl)* Added support for parsing cookies set using the `-b` flag, which
4
+ recent versions of Chrome use.
5
+* *(exstrings)* Added functions for hashing and constant time comparing strings
6
+ without copying to a byte array.
7
8
# v0.8.5 (2025-02-16)
9
10
* Bumped minimum Go version to 1.23.
util.go
@@ -6,8 +6,8 @@
package util
-const Version = "v0.8.5"
+const Version = "v0.8.6"
11
func VersionArray() [3]uint {
12
- return [3]uint{0, 8, 5}
+ return [3]uint{0, 8, 6}
13
}
0 commit comments