Skip to content

Commit 8afe752

Browse files
committed
Bump version to v0.7.0
1 parent 77362c9 commit 8afe752

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
# unreleased
1+
# v0.7.0 (2024-08-16)
22

3+
* Bumped minimum Go version to 1.22.
34
* *(curl)* Added `Parse` function to parse a curl command exported from browser
45
devtools.
56
* *(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
620

721
# v0.6.0 (2024-07-16)
822

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.6.0"
9+
const Version = "v0.7.0"
1010

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

0 commit comments

Comments
 (0)