Skip to content

Commit

Permalink
v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
acdha committed May 24, 2016
1 parent 329896c commit f5ee915
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ Changelog
New
~~~

- Expose the full Solr response in `Results` [Chris Adams]

This makes life easier for anyone using custom extensions by
removing the need to create a `Results` subclass just to get
access to an extra dictionary key.

- Start maintaining a changelog from gitchangelog. [Chris Adams]

- Overwrite flag for Solr.add (closes #182) [Chris Adams]

Thanks to @robinsonkwame for the patch
Expand All @@ -21,6 +29,29 @@ New
Other
~~~~~

- Tests: avoid timeout-based CI failures. [Chris Adams]

These caused sporadic CI build failures and weren’t
otherwise testing actual functionality since we don’t have a
test which does something like SIGSTOP the test Solr server
long enough to confirm a timeout.

We’ll confirm that the timeout is passed through but
otherwise use the defaults.

- Update Travis CI badge in the README. [Chris Adams]

- Merge pull request #184 from atuljangra/master. [Chris Adams]

Correct documentation for `_update`

Thanks to @atuljangra for the patch!

- Merge branch 'master' of https://github.com/atuljangra/pysolr.
[atuljangra]

- Misleading comments. [atuljangra]

- Travis: use build matrix for regular and SolrCloud tests. [Chris
Adams]

Expand Down
2 changes: 1 addition & 1 deletion pysolr.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

__author__ = 'Daniel Lindsley, Joseph Kocherhans, Jacob Kaplan-Moss'
__all__ = ['Solr']
__version__ = (3, 4, 0)
__version__ = (3, 5, 0)


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="pysolr",
version="3.4.0",
version="3.5.0",
description="Lightweight python wrapper for Apache Solr.",
author='Daniel Lindsley',
author_email='daniel@toastdriven.com',
Expand Down

0 comments on commit f5ee915

Please sign in to comment.