From cd268683522159d76b06843fe3ef73c6c9211e0c Mon Sep 17 00:00:00 2001 From: Peter Beshai Date: Wed, 31 Aug 2022 10:06:57 -0700 Subject: [PATCH] chore: uqp v2.0.1 --- packages/use-query-params/CHANGELOG.md | 4 ++++ packages/use-query-params/package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/use-query-params/CHANGELOG.md b/packages/use-query-params/CHANGELOG.md index 08a1e04..e638bb4 100644 --- a/packages/use-query-params/CHANGELOG.md +++ b/packages/use-query-params/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## use-query-params v2.0.1 (August 31, 2022) +- fixes #233 - consecutive calls to setters (e.g. setFoo('a'); setBar('b')) properly accumulate. Previously only the last would make it through. + + ## use-query-params v2.0.0 **Breaking** diff --git a/packages/use-query-params/package.json b/packages/use-query-params/package.json index 4f51400..668cce7 100644 --- a/packages/use-query-params/package.json +++ b/packages/use-query-params/package.json @@ -1,6 +1,6 @@ { "name": "use-query-params", - "version": "2.0.0", + "version": "2.0.1", "description": "React Hook for managing state in URL query parameters with easy serialization.", "main": "./dist/index.cjs.js", "typings": "./dist/index.d.ts",