Skip to content

Commit 6612a24

Browse files
committed
bump version to v0.8.0
1 parent de1b76b commit 6612a24

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
0.8.0 (unreleased)
2-
------------------
1+
0.8.0
2+
-----
33

44
* Renames `objectactions` to `change_actions`
55
* Removes `get_objectactions` (see below)

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,11 @@ version:
7171
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ django_object_actions/__init__.py
7272

7373
# Release instructions
74-
# 1. bump VERSION
75-
# 2. run `make release`
76-
# 3. `git push --tags origin master`
77-
# 4. update release notes
74+
# 1. update CHANGELOG
75+
# 2. bump VERSION
76+
# 3. run `make release`
77+
# 4. `git push --tags origin master`
78+
# 5. update release notes
7879
release: clean version
7980
@git commit -am "bump version to v$(VERSION)"
8081
@git tag v$(VERSION)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
0.8.0

django_object_actions/__init__.py

Lines changed: 1 addition & 1 deletion
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.7.0'
2+
__version__ = '0.8.0'
33

44

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

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

0 commit comments

Comments
 (0)