Skip to content

Commit f5ee915

Browse files
committed
v3.5.0
1 parent 329896c commit f5ee915

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

CHANGELOG.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ Changelog
77
New
88
~~~
99

10+
- Expose the full Solr response in `Results` [Chris Adams]
11+
12+
This makes life easier for anyone using custom extensions by
13+
removing the need to create a `Results` subclass just to get
14+
access to an extra dictionary key.
15+
16+
- Start maintaining a changelog from gitchangelog. [Chris Adams]
17+
1018
- Overwrite flag for Solr.add (closes #182) [Chris Adams]
1119

1220
Thanks to @robinsonkwame for the patch
@@ -21,6 +29,29 @@ New
2129
Other
2230
~~~~~
2331

32+
- Tests: avoid timeout-based CI failures. [Chris Adams]
33+
34+
These caused sporadic CI build failures and weren’t
35+
otherwise testing actual functionality since we don’t have a
36+
test which does something like SIGSTOP the test Solr server
37+
long enough to confirm a timeout.
38+
39+
We’ll confirm that the timeout is passed through but
40+
otherwise use the defaults.
41+
42+
- Update Travis CI badge in the README. [Chris Adams]
43+
44+
- Merge pull request #184 from atuljangra/master. [Chris Adams]
45+
46+
Correct documentation for `_update`
47+
48+
Thanks to @atuljangra for the patch!
49+
50+
- Merge branch 'master' of https://github.com/atuljangra/pysolr.
51+
[atuljangra]
52+
53+
- Misleading comments. [atuljangra]
54+
2455
- Travis: use build matrix for regular and SolrCloud tests. [Chris
2556
Adams]
2657

pysolr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

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

6060

6161
def get_version():

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="pysolr",
9-
version="3.4.0",
9+
version="3.5.0",
1010
description="Lightweight python wrapper for Apache Solr.",
1111
author='Daniel Lindsley',
1212
author_email='[email protected]',

0 commit comments

Comments
 (0)