-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.6.2 | ||
current_version = 0.6.3 | ||
commit = True | ||
tag = True | ||
tag_name = {new_version} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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,17 +175,17 @@ 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``:: | ||
|
||
pip install git+https://github.com/kezabelle/django-haystackbrowser.git#egg=django-haystackbrowser | ||
|
||
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/[email protected].2#egg=django-haystackbrowser | ||
pip install git+https://github.com/kezabelle/[email protected].3#egg=django-haystackbrowser | ||
|
||
You can find all previous releases `tagged on GitHub`_ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
|