Skip to content
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to

## [Unreleased]

_No notable unreleased changes_

## [0.1.20] - 2025-06-19

### Fixed

- `SaferRemoveUniqueConstraint` now produces the best-effort plan for a migration that would be
Expand Down Expand Up @@ -207,7 +211,8 @@ Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
- `SaferAddIndexConcurrently` migration operation to create new Postgres
indexes in a safer, idempotent way.

[Unreleased]: https://github.com/kraken-tech/django-pg-migration-tools/compare/v0.1.19...HEAD
[Unreleased]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.20...HEAD
[0.1.20]: https://github.com/kraken-tech/django-pg-migration-tools/compare/v0.1.19...v0.1.20
[0.1.19]: https://github.com/kraken-tech/django-pg-migration-tools/compare/v0.1.18...v0.1.19
[0.1.18]: https://github.com/kraken-tech/django-pg-migration-tools/compare/v0.1.17...v0.1.18
[0.1.17]: https://github.com/kraken-tech/django-pg-migration-tools/compare/v0.1.16...v0.1.17
Expand Down
4 changes: 2 additions & 2 deletions 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.19"
version = "0.1.20"
description = "Tools for making Django migrations safer and more scalable."
license.file = "LICENSE"
readme = "README.md"
Expand Down Expand Up @@ -175,7 +175,7 @@ exclude_also = [

[tool.bumpversion]
# Do not manually edit the version, use `make version_{type}` instead.
current_version = "0.1.19"
current_version = "0.1.20"

# Relabel the Unreleased section of the changelog and add a new unreleased section as a reminder to
# add to it.
Expand Down
Loading