Skip to content

Commit 6a259a9

Browse files
authored
Merge pull request #100 from kraken-tech/timb07/release-0.1.26
Release version 0.1.26
2 parents ab02c49 + 7ccb2b9 commit 6a259a9

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
88

99
## [Unreleased]
1010

11+
_No notable unreleased changes_
12+
13+
## [0.1.26] - 2026-02-27
14+
15+
- Updated supported versions of Python, Django and Postgres as follows:
16+
- Added support for Python 3.13 and 3.14
17+
- Dropped support for Django 4.2 and 5.0 and added support for Django 5.2 and 6.0
18+
- Dropped support for Postgre 13 and added support for Postgres 17 and 18
1119
- Fixed a bug where a unique constraint with `nulls_distinct=False` was created
1220
without "NULLS NOT DISTINCT" by `SaferAddUniqueConstraint`.
1321
- Fixed a bug where a unique constraint with `nulls_distinct=False` resulted in
@@ -252,7 +260,8 @@ Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to
252260
- `SaferAddIndexConcurrently` migration operation to create new Postgres
253261
indexes in a safer, idempotent way.
254262

255-
[Unreleased]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.25...HEAD
263+
[Unreleased]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.26...HEAD
264+
[0.1.26]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.25...v0.1.26
256265
[0.1.25]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.24...v0.1.25
257266
[0.1.24]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.23...v0.1.24
258267
[0.1.23]: https://github.com/octoenergy/django-migration-helpers/compare/v0.1.22...v0.1.23

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ where = ["src"]
2121

2222
[project]
2323
name = "django_pg_migration_tools"
24-
version = "0.1.25"
24+
version = "0.1.26"
2525
description = "Tools for making Django migrations safer and more scalable."
2626
license.file = "LICENSE"
2727
readme = "README.md"
@@ -177,7 +177,7 @@ exclude_also = [
177177

178178
[tool.bumpversion]
179179
# Do not manually edit the version, use `make version_{type}` instead.
180-
current_version = "0.1.25"
180+
current_version = "0.1.26"
181181

182182
# Relabel the Unreleased section of the changelog and add a new unreleased section as a reminder to
183183
# add to it.

0 commit comments

Comments
 (0)