Skip to content

Commit 78df3fc

Browse files
committed
bump version to v1.1.0
1 parent 4191afd commit 78df3fc

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.1.0
2+
3+
### Added
4+
* [4191afd691] - feat: Make default labels prettier (#93)
5+
6+
### Fixed
7+
* [fb908697a6] - Return to preserved filters on change_list after object action (#88)
8+
19
## 1.0.0
210

311
I didn't get around to everything I listed in #44 as a release blocker for 1.0,

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ test/%:
7373
bash:
7474
docker run --rm -it $(IMAGE):2.0 /bin/bash
7575

76+
.PHONY: version
7677
version:
7778
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ setup.py
7879
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ django_object_actions/__init__.py

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.1.0

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__ = '0.10.0'
2+
__version__ = '1.1.0'
33

44

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='django-object-actions',
6-
version='1.0.0',
6+
version='1.1.0',
77
author='Chris Chang',
88
author_email='[email protected]',
99
url='https://github.com/crccheck/django-object-actions',

0 commit comments

Comments
 (0)