Skip to content

Commit 1628c7f

Browse files
committed
4.0.0
Automatically generated by python-semantic-release
1 parent 8deebed commit 1628c7f

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
<!--next-version-placeholder-->
44

5+
## v4.0.0 (2022-03-12)
6+
### Feature
7+
* Drop Python 3.6 support ([#135](https://github.com/crccheck/django-object-actions/issues/135)) ([`8deebed`](https://github.com/crccheck/django-object-actions/commit/8deebedda55d0e5d466969c7f27a9c60e680e5e8))
8+
9+
### Fix
10+
* Cleanup Django compatibility shims for <2.0 ([#126](https://github.com/crccheck/django-object-actions/issues/126)) ([`88cfb3b`](https://github.com/crccheck/django-object-actions/commit/88cfb3b2e06b17762639da7f48259eeae343942f))
11+
12+
### Breaking
13+
* Python 3.6 is past end-of-life and is no longer supported. Keeping it in `pyproject.toml` was causing pains trying to install packages. Let's drop it while we're dropping support for other old stuff. ([`8deebed`](https://github.com/crccheck/django-object-actions/commit/8deebedda55d0e5d466969c7f27a9c60e680e5e8))
14+
15+
### Documentation
16+
* Add [email protected] to CI ([#133](https://github.com/crccheck/django-object-actions/issues/133)) ([`20e2418`](https://github.com/crccheck/django-object-actions/commit/20e2418e6ada4651b3e6d51b5d10c545d8a6c863))
17+
518
## v3.1.0 (2021-12-18)
619
### Feature
720
* **ci:** Add manual semantic-release ([#128](https://github.com/crccheck/django-object-actions/issues/128)) ([`f43fd11`](https://github.com/crccheck/django-object-actions/commit/f43fd1199a72be013766d437fe54d875e2fdd53f))

django_object_actions/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""A Django app for adding object tools for models in the admin."""
2-
__version__ = "3.1.0"
2+
__version__ = "4.0.0"
33

44

55
# kind of like __all__, make these available for public

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-object-actions"
3-
version = "3.1.0"
3+
version = "4.0.0"
44
description = "A Django app for adding object tools for models in the admin"
55
authors = ["crccheck <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)