Skip to content

Commit

Permalink
bump version to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
crccheck committed Feb 26, 2016
1 parent de1b76b commit 6612a24
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
0.8.0 (unreleased)
------------------
0.8.0
-----

* Renames `objectactions` to `change_actions`
* Removes `get_objectactions` (see below)
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ version:
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ django_object_actions/__init__.py

# Release instructions
# 1. bump VERSION
# 2. run `make release`
# 3. `git push --tags origin master`
# 4. update release notes
# 1. update CHANGELOG
# 2. bump VERSION
# 3. run `make release`
# 4. `git push --tags origin master`
# 5. update release notes
release: clean version
@git commit -am "bump version to v$(VERSION)"
@git tag v$(VERSION)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.8.0
2 changes: 1 addition & 1 deletion django_object_actions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""A Django app for adding object tools for models in the admin."""
__version__ = '0.7.0'
__version__ = '0.8.0'


# kind of like __all__, make these available for public
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-object-actions',
version='0.7.0',
version='0.8.0',
author='Chris Chang',
author_email='[email protected]',
url='https://github.com/crccheck/django-object-actions',
Expand Down

0 comments on commit 6612a24

Please sign in to comment.