File tree 5 files changed +12
-3
lines changed
5 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
9
## 1.0.0
2
10
3
11
I didn't get around to everything I listed in #44 as a release blocker for 1.0,
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ test/%:
73
73
bash :
74
74
docker run --rm -it $(IMAGE ) :2.0 /bin/bash
75
75
76
+ .PHONY : version
76
77
version :
77
78
@sed -i -r /version/s/[0-9.]+/$(VERSION ) / setup.py
78
79
@sed -i -r /version/s/[0-9.]+/$(VERSION ) / django_object_actions/__init__.py
Original file line number Diff line number Diff line change 1
- 1.0 .0
1
+ 1.1 .0
Original file line number Diff line number Diff line change 1
1
"""A Django app for adding object tools for models in the admin."""
2
- __version__ = '0.10 .0'
2
+ __version__ = '1.1 .0'
3
3
4
4
5
5
# kind of like __all__, make these available for public
Original file line number Diff line number Diff line change 3
3
4
4
setup (
5
5
name = 'django-object-actions' ,
6
- version = '1.0 .0' ,
6
+ version = '1.1 .0' ,
7
7
author = 'Chris Chang' ,
8
8
9
9
url = 'https://github.com/crccheck/django-object-actions' ,
You can’t perform that action at this time.
0 commit comments