Skip to content

Commit 8558f7b

Browse files
committed
bump version to v0.10.0
1 parent 242cf07 commit 8558f7b

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CHANGELOG.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
0.9.0
2-
-----
1+
## 0.10.0
2+
3+
* Add support for Django 1.11 (#76 #78)
4+
5+
## 0.9.0
36

47
* Add support for all primary key formats (#75)
58
* Add support for Django 1.10 (#74)
69
* Remove support for Django 1.6 (#73)
710
* Documentation tweaks (#71 #70)
811

9-
0.8.2
10-
-----
12+
## 0.8.2
1113

1214
* Fix how the demo site stopped working because of bad settings
1315

14-
0.8.1
15-
-----
16+
## 0.8.1
1617

1718
* Fix how extra_context set by admins was not passed
1819
* Fix how if you had multiple admins, you always got redirected to the default admin
1920

20-
0.8.0
21-
-----
21+
## 0.8.0
2222

2323
* Renames `objectactions` to `change_actions`
2424
* Removes `get_object_actions` (see below)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.0
1+
0.10.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.9.0'
2+
__version__ = '0.10.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='0.9.0',
6+
version='0.10.0',
77
author='Chris Chang',
88
author_email='[email protected]',
99
url='https://github.com/crccheck/django-object-actions',

0 commit comments

Comments
 (0)