diff --git a/CHANGES.rst b/CHANGES.rst index a6e4a05..230d73a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,12 @@ Changelog Here you can see the full list of changes between each PostgreSQL-Audit release. +0.17.1 (2023-11-06) +^^^^^^^^^^^^^^^^^^^ + +- Fix package name to be in lowercase in ``pyproject.toml``. + + 0.17.0 (2023-11-04) ^^^^^^^^^^^^^^^^^^^ diff --git a/postgresql_audit/__init__.py b/postgresql_audit/__init__.py index 5bcb9b7..c1bf4b8 100644 --- a/postgresql_audit/__init__.py +++ b/postgresql_audit/__init__.py @@ -14,4 +14,4 @@ rename_table ) -__version__ = '0.17.0' +__version__ = '0.17.1' diff --git a/pyproject.toml b/pyproject.toml index 9716f5a..838d67a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "PostgreSQL-Audit" +name = "postgresql-audit" dynamic = ["version"] description = "Versioning and auditing extension for PostgreSQL and SQLAlchemy." readme = "README.rst"