summaryrefslogtreecommitdiff
path: root/ReleaseNotes.md
diff options
context:
space:
mode:
Diffstat (limited to 'ReleaseNotes.md')
-rw-r--r--ReleaseNotes.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/ReleaseNotes.md b/ReleaseNotes.md
index 608038e..5d85254 100644
--- a/ReleaseNotes.md
+++ b/ReleaseNotes.md
@@ -1,3 +1,17 @@
+# v0.3.4 (2023-02-05)
+
+ Theme: Fix compilation with Go 1.20
+
+ lowmemjson uses git.lukeshu.com/go/typedsync.CacheMap (since
+ lowmemjson v0.3.1), which when compiled with Go 1.20 makes use of Go
+ 1.20 language features. However, because lowmemjson's `go.mod` said
+ `go 1.18`, those language features are disabled and compilation
+ fails (see [go#58342][]). To work around this, lowmemjson's
+ `go.mod` now says `go 1.20`. Despite this, lowmemjson still works
+ fine with Go 1.18.
+
+ [go#58342]: https://github.com/golang/go/issues/58342
+
# v0.3.3 (2023-02-04)
Theme: Bugfix