Skip to content

Commit

Permalink
Fix package name to be in lowercase in pyproject.toml
Browse files Browse the repository at this point in the history
The package name was called `PostgreSQL-Audit` in the `pyproject.toml`.
That caused the package name to be `PostgreSQL_Audit` when installed,
which was different than the previous `postgresql_audit`.
  • Loading branch information
jpvanhal committed Nov 6, 2023
1 parent 58ba047 commit 7fae313
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion postgresql_audit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
rename_table
)

__version__ = '0.17.0'
__version__ = '0.17.1'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7fae313

Please sign in to comment.