Skip to content

Commit

Permalink
Merge branch 'release/0.5.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rlskoeser committed Dec 10, 2019
2 parents 998d09e + 35c8d0f commit 09e3887
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
CHANGELOG
=========

0.5.1
-----

* bugfix: SolrQuerySet improved handling for Solr errors

0.5
---

Expand Down
4 changes: 2 additions & 2 deletions parasolr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

default_app_config = 'parasolr.apps.ParasolConfig'

__version_info__ = (0, 6, 0, 'dev')
__version_info__ = (0, 5, 1, None)

# Dot-connect all but the last. Last is dash-connected if not None.
__version__ = '.'.join([str(i) for i in __version_info__[:-1]])
if __version_info__[-1] is not None:
__version__ += ('-%s' % (__version_info__[-1],))
__version__ += ('-%s' % (__version_info__[-1],))

0 comments on commit 09e3887

Please sign in to comment.