From 25d0835555f47f2a43db235e01980becc121ad3c Mon Sep 17 00:00:00 2001 From: Dirk Pranke Date: Wed, 6 Mar 2024 11:54:23 -0800 Subject: [PATCH] bump version to 0.9.21 --- README.md | 3 +++ json5/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fded042..12b8d04 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,9 @@ $ python3 -m twine upload dist/* ## Version History / Release Notes +* v0.9.21 (2024-03-06) + * Moved the benchmarks/*.json data files' license information + to //LICENSE to (hopefully) make the Google linter happy. * v0.9.20 (2024-03-03) * Added `json5.__version__` in addition to `json5.VERSION`. * More packaging modernization (no more setup.{cfg,py} files). diff --git a/json5/version.py b/json5/version.py index cb9cc1e..372e0bc 100644 --- a/json5/version.py +++ b/json5/version.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.9.20' +__version__ = '0.9.21' # For backward-compatibility with earlier versions of json5: VERSION = __version__