From 78df3fc21358d54dbcc3bf690cc6638d6902be28 Mon Sep 17 00:00:00 2001 From: crccheck Date: Sat, 4 May 2019 10:17:08 -0500 Subject: [PATCH] bump version to v1.1.0 --- CHANGELOG.md | 8 ++++++++ Makefile | 1 + VERSION | 2 +- django_object_actions/__init__.py | 2 +- setup.py | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6683c09..33a2c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.1.0 + +### Added +* [4191afd691] - feat: Make default labels prettier (#93) + +### Fixed +* [fb908697a6] - Return to preserved filters on change_list after object action (#88) + ## 1.0.0 I didn't get around to everything I listed in #44 as a release blocker for 1.0, diff --git a/Makefile b/Makefile index 0c7ec52..c14f8eb 100644 --- a/Makefile +++ b/Makefile @@ -73,6 +73,7 @@ test/%: bash: docker run --rm -it $(IMAGE):2.0 /bin/bash +.PHONY: version version: @sed -i -r /version/s/[0-9.]+/$(VERSION)/ setup.py @sed -i -r /version/s/[0-9.]+/$(VERSION)/ django_object_actions/__init__.py diff --git a/VERSION b/VERSION index 3eefcb9..9084fa2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.1.0 diff --git a/django_object_actions/__init__.py b/django_object_actions/__init__.py index 06ea093..043dad0 100644 --- a/django_object_actions/__init__.py +++ b/django_object_actions/__init__.py @@ -1,5 +1,5 @@ """A Django app for adding object tools for models in the admin.""" -__version__ = '0.10.0' +__version__ = '1.1.0' # kind of like __all__, make these available for public diff --git a/setup.py b/setup.py index e451e71..3791cb3 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-object-actions', - version='1.0.0', + version='1.1.0', author='Chris Chang', author_email='c@crccheck.com', url='https://github.com/crccheck/django-object-actions',