Skip to content

Commit

Permalink
Bump version to 2.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Jan 2, 2025
1 parent d66f66f commit cbac7ee
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change log

## 2.7.5 (2025-01-02)
- Update django.po for Ukrainian 🇺🇦 ([#934](https://github.com/jieter/django-tables2/pull/934)) by [@DmytroLitvinov](https://github.com/DmytroLitvinov)

## 2.7.4 & 2.7.3 (2024-12-23)
Correct packaging mistakes:
- Remove upper bound for `python_requires`
Expand Down
2 changes: 1 addition & 1 deletion django_tables2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .utils import A
from .views import MultiTableMixin, SingleTableMixin, SingleTableView

__version__ = "2.7.4"
__version__ = "2.7.5"

__all__ = (
"Table",
Expand Down
4 changes: 4 additions & 0 deletions maintenance.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
if sys.argv[-1] == "bump":
os.system("hatch version patch")

print("\n- Commit CHANGELOG and django_tables2/__init__.py")
print("- Run `./maintenance.py tag` to tag the new version")

elif sys.argv[-1] == "publish":
os.system("hatch publish")
os.system("rm -f dist/django_tables2-2.7.4*")
Expand All @@ -26,6 +29,7 @@
print(f"Failed tagging with command: {tag_cmd}")
else:
os.system("git push --tags && git push origin master")
print("\nTag created, run `./maintenance.py publish` to publish it")

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

Expand Down

0 comments on commit cbac7ee

Please sign in to comment.