diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f105c49..155954a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.2 +current_version = 0.6.3 commit = True tag = True tag_name = {new_version} diff --git a/README.rst b/README.rst index 5240365..040f9ab 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,7 @@ django-haystackbrowser :author: Keryn Knight -.. |travis_stable| image:: https://travis-ci.org/kezabelle/django-haystackbrowser.svg?branch=0.6.2 +.. |travis_stable| image:: https://travis-ci.org/kezabelle/django-haystackbrowser.svg?branch=0.6.3 :target: https://travis-ci.org/kezabelle/django-haystackbrowser/branches .. |travis_master| image:: https://travis-ci.org/kezabelle/django-haystackbrowser.svg?branch=master @@ -35,7 +35,7 @@ django-haystackbrowser ============== ====== Release Status ============== ====== -stable (0.6.2) |travis_stable| +stable (0.6.3) |travis_stable| master |travis_master| ============== ====== @@ -175,7 +175,7 @@ Using pip The best way to grab the package is using ``pip`` to grab latest release from `PyPI`_:: - pip install django-haystackbrowser==0.6.2 + pip install django-haystackbrowser==0.6.3 The alternative is to use ``pip`` to install the master branch in ``git``:: @@ -183,9 +183,9 @@ The alternative is to use ``pip`` to install the master branch in ``git``:: Any missing dependencies will be resolved by ``pip`` automatically. -If you want the last release (0.6.2), such as it is, you can do:: +If you want the last release (0.6.3), such as it is, you can do:: - pip install git+https://github.com/kezabelle/django-haystackbrowser.git@0.6.2#egg=django-haystackbrowser + pip install git+https://github.com/kezabelle/django-haystackbrowser.git@0.6.3#egg=django-haystackbrowser You can find all previous releases `tagged on GitHub`_ diff --git a/docs/conf.py b/docs/conf.py index e6d16f6..e25c5ed 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = '0.6.2' +version = '0.6.3' # The full version, including alpha/beta/rc tags. -release = '0.6.2' +release = '0.6.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/haystackbrowser/__init__.py b/haystackbrowser/__init__.py index 60e384b..130733a 100644 --- a/haystackbrowser/__init__.py +++ b/haystackbrowser/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- -__version_info__ = '0.6.2' -__version__ = '0.6.2' -version = '0.6.2' +__version_info__ = '0.6.3' +__version__ = '0.6.3' +version = '0.6.3' diff --git a/setup.py b/setup.py index 97abf9b..671e757 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def make_readme(root_path): setup( name='django-haystackbrowser', - version='0.6.2', + version='0.6.3', description=SHORT_DESC, author='Keryn Knight', author_email='python-package@kerynknight.com',