From a0190b7b682b2480b027235f5933060c53da5534 Mon Sep 17 00:00:00 2001 From: Onsi Fakhouri Date: Thu, 19 Dec 2024 17:28:57 -0700 Subject: [PATCH] v2.22.1 --- CHANGELOG.md | 13 +++++++++++++ types/version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6e070c1..0c29708d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 2.22.1 + +### Fixes +Fix CSV encoding +- Update tests [aab3da6] +- Properly encode CSV rows [c09df39] +- Add test case for proper csv escaping [96a80fc] +- Add meta-test [43dad69] + +### Maintenance +- ensure *.test files are gitignored so we don't accidentally commit compiled tests again [c88c634] +- remove golang.org/x/net/context in favour of stdlib context [4df44bf] + ## 2.22.0 ### Features diff --git a/types/version.go b/types/version.go index 0b51c0b56..501af2fd9 100644 --- a/types/version.go +++ b/types/version.go @@ -1,3 +1,3 @@ package types -const VERSION = "2.22.0" +const VERSION = "2.22.1"