Skip to content

Commit 0cd8a24

Browse files
committed
chore(release): 1.1.2
1 parent 2d2a689 commit 0cd8a24

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<a name="1.1.1"></a>
1+
# Changelog
2+
### [1.1.2](https://github.com/crccheck/django-object-actions/compare/v1.1.1...v1.1.2) (2019-11-14)
3+
24
## [1.1.1](https://github.com/crccheck/django-object-actions/compare/v1.1.0...v1.1.1) (2019-10-06)
35

46
### Bug Fixes

Makefile

+7-8
Original file line numberDiff line numberDiff line change
@@ -83,17 +83,16 @@ bash:
8383
version:
8484
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ setup.py
8585
@sed -i -r /version/s/[0-9.]+/$(VERSION)/ django_object_actions/__init__.py
86+
# TODO figure out how to get Make to insert a \n
87+
git add . && standard-version --commit-all --changelogHeader "# Changelog"
8688

8789
# Release instructions
88-
# 1. update CHANGELOG
89-
# 2. bump VERSION
90-
# 3. run `make release`
90+
# 1. bump VERSION
91+
# 2. `make version`
92+
# 3. `make release`
9193
# 4. `git push --tags origin master`
92-
# 5. update release notes
93-
# 6. `chandler push`
94+
# 5. `chandler push`
9495
# 6. `make build docker/publish`
95-
release: clean version
96-
@git commit -am "bump version to v$(VERSION)"
97-
@git tag v$(VERSION)
96+
release:
9897
@-pip install wheel > /dev/null
9998
python setup.py sdist bdist_wheel upload

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.1
1+
1.1.2

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__ = "1.1.1"
2+
__version__ = "1.1.2"
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="1.1.1",
6+
version="1.1.2",
77
author="Chris Chang",
88
author_email="[email protected]",
99
url="https://github.com/crccheck/django-object-actions",

0 commit comments

Comments
 (0)