Skip to content

Commit

Permalink
chore(release): 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
crccheck committed Nov 14, 2019
1 parent 2d2a689 commit 0cd8a24
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<a name="1.1.1"></a>
# Changelog
### [1.1.2](https://github.com/crccheck/django-object-actions/compare/v1.1.1...v1.1.2) (2019-11-14)

## [1.1.1](https://github.com/crccheck/django-object-actions/compare/v1.1.0...v1.1.1) (2019-10-06)

### Bug Fixes
Expand Down
15 changes: 7 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,16 @@ bash:
version:
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ setup.py
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ django_object_actions/__init__.py
# TODO figure out how to get Make to insert a \n
git add . && standard-version --commit-all --changelogHeader "# Changelog"

# Release instructions
# 1. update CHANGELOG
# 2. bump VERSION
# 3. run `make release`
# 1. bump VERSION
# 2. `make version`
# 3. `make release`
# 4. `git push --tags origin master`
# 5. update release notes
# 6. `chandler push`
# 5. `chandler push`
# 6. `make build docker/publish`
release: clean version
@git commit -am "bump version to v$(VERSION)"
@git tag v$(VERSION)
release:
@-pip install wheel > /dev/null
python setup.py sdist bdist_wheel upload
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.2
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__ = "1.1.1"
__version__ = "1.1.2"


# 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="1.1.1",
version="1.1.2",
author="Chris Chang",
author_email="[email protected]",
url="https://github.com/crccheck/django-object-actions",
Expand Down

0 comments on commit 0cd8a24

Please sign in to comment.