From a97d106c3a67a556d153ff1b2b2caec68d7cc279 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 23 Apr 2022 11:46:37 -0700 Subject: [PATCH 1/3] update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7582349..c9866613 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.5.1 + +* Wrap errors so they're compatible with `errors.Is` and `errors.As` [GH-282] + ## 1.5.0 * New option `IgnoreUntaggedFields` to ignore decoding to any fields From e10ba6231bb0b1cc1f46ea35826e01233366c530 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 23 Apr 2022 11:47:42 -0700 Subject: [PATCH 2/3] update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9866613..ae634d1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## 1.5.1 * Wrap errors so they're compatible with `errors.Is` and `errors.As` [GH-282] +* Fix map of slices not decoding properly in certain cases. [GH-266] ## 1.5.0 From 627ea8aecfa89d402f981fc57aab45022a9e274f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 23 Apr 2022 11:47:53 -0700 Subject: [PATCH 3/3] update Go version for tests --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 65e2b2ca..1ae7df20 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: test: strategy: matrix: - go-version: [1.15.x] + go-version: [1.18.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: