Skip to content

Commit cbac7ee

Browse files
committed
Bump version to 2.7.5
1 parent d66f66f commit cbac7ee

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change log
22

3+
## 2.7.5 (2025-01-02)
4+
- Update django.po for Ukrainian 🇺🇦 ([#934](https://github.com/jieter/django-tables2/pull/934)) by [@DmytroLitvinov](https://github.com/DmytroLitvinov)
5+
36
## 2.7.4 & 2.7.3 (2024-12-23)
47
Correct packaging mistakes:
58
- Remove upper bound for `python_requires`

django_tables2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from .utils import A
2121
from .views import MultiTableMixin, SingleTableMixin, SingleTableView
2222

23-
__version__ = "2.7.4"
23+
__version__ = "2.7.5"
2424

2525
__all__ = (
2626
"Table",

maintenance.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
if sys.argv[-1] == "bump":
1616
os.system("hatch version patch")
1717

18+
print("\n- Commit CHANGELOG and django_tables2/__init__.py")
19+
print("- Run `./maintenance.py tag` to tag the new version")
20+
1821
elif sys.argv[-1] == "publish":
1922
os.system("hatch publish")
2023
os.system("rm -f dist/django_tables2-2.7.4*")
@@ -26,6 +29,7 @@
2629
print(f"Failed tagging with command: {tag_cmd}")
2730
else:
2831
os.system("git push --tags && git push origin master")
32+
print("\nTag created, run `./maintenance.py publish` to publish it")
2933

3034
elif sys.argv[-1] == "screenshots":
3135

0 commit comments

Comments
 (0)