From cf1a9c6fa520a6a14a39ffc8bf24c1f928fadf5f Mon Sep 17 00:00:00 2001 From: Michel Wermelinger Date: Tue, 10 Sep 2024 13:03:23 +0100 Subject: [PATCH] Create release --- CHANGELOG.md | 6 ++++-- allowed/allowed.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a515e0a..2d66b05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,12 @@ This project does *not* adhere to [Semantic Versioning](https://semver.org). -## [Unreleased](https://github.com/dsa-ou/allowed/compare/v1.5.0...HEAD) +## [Unreleased](https://github.com/dsa-ou/allowed/compare/v1.5.1...HEAD) These changes are in the GitHub repository but not on [PyPI](https://pypi.org/project/allowed). - +Nothing yet. + +## [1.5.1](https://github.com/dsa-ou/allowed/compare/v1.5.0...v1.5.1) - 2024-09-10 ### Fixed - option `-m` doesn't crash if Python 3.10 isn't installed diff --git a/allowed/allowed.py b/allowed/allowed.py index 7859399..a56d72a 100644 --- a/allowed/allowed.py +++ b/allowed/allowed.py @@ -1,6 +1,6 @@ """Check that Python and notebook files only use the allowed constructs.""" -__version__ = "1.5.0" # same as in pyproject.toml +__version__ = "1.5.1" # same as in pyproject.toml import argparse import ast diff --git a/pyproject.toml b/pyproject.toml index 565de68..907d648 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "allowed" -version = "1.5.0" # as in allowed.py +version = "1.5.1" # as in allowed.py description = "Check if a program only uses a subset of the Python language." authors = ["Michel Wermelinger "] readme = "README.md"