File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
- # unreleased
1
+ # v0.7.0 (2024-08-16)
2
2
3
+ * Bumped minimum Go version to 1.22.
3
4
* * (curl)* Added ` Parse ` function to parse a curl command exported from browser
4
5
devtools.
5
6
* * (exfmt)* Moved ` FormatCurl ` to ` curl ` package.
7
+ * * (exslices)* Added ` DeduplicateUnsorted ` utility for deduplicating items in a
8
+ list while preserving order.
9
+ * * (exsync)* Deprecated ` ReturnableOnce ` in favor of the standard library's
10
+ [ ` sync.OnceValues ` ] .
11
+ * * (exsync)* Added ` Event ` which works similar to Python's [ ` asyncio.Event ` ] .
12
+ * * (confusable)* Added implementation of confusable detection from [ UTS #39 ] .
13
+ * * (dbutil)* Added deadlock detection option which panics if a database call is
14
+ made without the appropriate transaction context in a goroutine which
15
+ previously entered a database transaction.
16
+
17
+ [ UTS #39 ] : https://www.unicode.org/reports/tr39/#Confusable_Detection
18
+ [ `sync.OnceValues` ] : https://pkg.go.dev/sync#OnceValues
19
+ [ `asyncio.Event` ] : https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event
6
20
7
21
# v0.6.0 (2024-07-16)
8
22
Original file line number Diff line number Diff line change 6
6
7
7
package util
8
8
9
- const Version = "v0.6 .0"
9
+ const Version = "v0.7 .0"
10
10
11
11
func VersionArray () [3 ]uint {
12
- return [3 ]uint {0 , 6 , 0 }
12
+ return [3 ]uint {0 , 7 , 0 }
13
13
}
You can’t perform that action at this time.
0 commit comments