Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v0.1.17 #73

Merged
merged 3 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to

## [Unreleased]

## [0.1.17] - 2025-01-14

### Added

- Enhanced `SaferAddUniqueConstraint` to support a `UniqueConstraint` with the
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Tools to make Django migrations safer and more scalable.
- [Removing indexes (concurrently)](https://django-pg-migration-tools.readthedocs.io/en/latest/usage/operations.html#SaferRemoveIndexConcurrently)
- [Setting a column to NOT NULL](https://django-pg-migration-tools.readthedocs.io/en/latest/usage/operations.html#SaferAlterFieldSetNotNull)
- [Adding foreign keys](https://django-pg-migration-tools.readthedocs.io/en/latest/usage/operations.html#SaferAddFieldForeignKey)
- [Removing foreign keys](https://django-pg-migration-tools.readthedocs.io/en/latest/usage/operations.html#SaferRemoveFieldForeignKey)
- [Adding one to one fields](https://django-pg-migration-tools.readthedocs.io/en/latest/usage/operations.html#SaferAddFieldOneToOne)

- **Database timeouts**:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ where = ["src"]

[project]
name = "django_pg_migration_tools"
version = "0.1.16"
version = "0.1.17"
description = "Tools for making Django migrations safer and more scalable."
license.file = "LICENSE"
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions requirements/development.txt
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ typing-extensions==4.12.2
# django-stubs
# django-stubs-ext
# mypy
# psycopg
urllib3==2.3.0
# via requests
virtualenv==20.28.1
Expand Down
1 change: 1 addition & 0 deletions requirements/pytest-in-nox-psycopg3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ typing-extensions==4.12.2
# dj-database-url
# django-stubs
# django-stubs-ext
# psycopg
virtualenv==20.28.1
# via nox
Loading