diff --git a/jsonc/__init__.py b/jsonc/__init__.py index 75604ba..d13d0f7 100644 --- a/jsonc/__init__.py +++ b/jsonc/__init__.py @@ -20,7 +20,7 @@ from typing import TYPE_CHECKING, Any, TextIO from warnings import warn -__version__ = "1.2.0" +__version__ = "1.2.1" import json import re from json import JSONDecoder, JSONEncoder # for compatibility diff --git a/pyproject.toml b/pyproject.toml index 6fb4c05..7683799 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "json-with-comments" -version = "1.2.0" +version = "1.2.1" description = "JSON with Comments for Python" license = "MIT" authors = ["Takumasa Nakamura "]