Skip to content

Commit

Permalink
Bump version: 0.1.6 → 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mwhansen committed Jan 12, 2022
1 parent a3b8e3b commit 55853cc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.6
current_version = 0.1.7
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Overview
:alt: PyPI Package latest release
:target: https://pypi.python.org/pypi/django-delayed-union

.. |commits-since| image:: https://img.shields.io/github/commits-since/roverdotcom/django-delayed-union/v0.1.6.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/roverdotcom/django-delayed-union/v0.1.7.svg
:alt: Commits since latest release
:target: https://github.com/roverdotcom/django-delayed-union/compare/v0.1.6...master
:target: https://github.com/roverdotcom/django-delayed-union/compare/v0.1.7...master

.. |wheel| image:: https://img.shields.io/pypi/wheel/django-delayed-union.svg
:alt: PyPI Wheel
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
year = '2018'
author = u'Mike Hansen'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.1.6'
version = release = '0.1.7'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def read(*names, **kwargs):

setup(
name='django-delayed-union',
version='0.1.6',
version='0.1.7',
license='BSD 3-Clause License',
description="A library designed to workaround some drawbacks with Django's union, intersection, and difference operations.",
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/django_delayed_union/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .intersection import DelayedIntersectionQuerySet
from .union import DelayedUnionQuerySet

__version__ = '0.1.6'
__version__ = '0.1.7'

__all__ = [
'__version__',
Expand Down

0 comments on commit 55853cc

Please sign in to comment.