From 43901a8f45579b6d987245edffd8c8fd5cb6a158 Mon Sep 17 00:00:00 2001 From: Dirk Pranke Date: Fri, 12 Apr 2024 12:38:44 -0700 Subject: [PATCH] bump version to 0.9.25 --- README.md | 4 ++++ json5/version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 91557e6..70eae46 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,10 @@ $ python3 -m twine upload dist/* ## Version History / Release Notes +* v0.9.25 (2024-04-12) + * [GitHub issue #81](https://github.com/dpranke/pyjson5/issues/81) + Explicitly specify the directory to use for the package in + pyproject.toml. * v0.9.24 (2024-03-16) * Update GitHub workflow config to remove unnecessary steps and run on pull requests as well as commits. diff --git a/json5/version.py b/json5/version.py index 768f91d..fb3a46c 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.24' +__version__ = '0.9.25' # For backward-compatibility with earlier versions of json5: VERSION = __version__