Skip to content

Commit b3c01f4

Browse files
committed
fixed fatal premature exercise of response iterator in context check method, defer to _getDefaults. upped version to 0.8.12
1 parent 4fc2c3e commit b3c01f4

File tree

5 files changed

+361
-5
lines changed

5 files changed

+361
-5
lines changed

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ relevant packages.
5555
>> import requests
5656
>> import pyral
5757
>> pyral.__version__
58-
(0, 8, 11)
58+
(0, 8, 12)
5959

6060

6161

@@ -258,6 +258,8 @@ Prerequisites
258258

259259
Versions
260260
--------
261+
262+
* 0.8.12 - Fixed premature exercise of iterator in initial response
261263

262264
* 0.8.11 - Fixed inappropriate error message when initial connect attempt timed out.
263265
Message had stated that the target server did not speak the Rally WSAPI.
@@ -267,6 +269,12 @@ Versions
267269
Limited success as there is an outstanding issue in
268270
requests (urllib3) not implementing CONNECT for https over http.
269271

272+
* 0.8.9 - initial attempt at providing proxy support
273+
274+
* 0.8.8 - added warn=True/False to Rally instantiation
275+
276+
* 0.8.7 - Initial release on developer.rallydev.com
277+
270278
TODO
271279
----
272280

build_dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import zipfile
1212

1313
PACKAGE_NAME = "pyral"
14-
VERSION = "0.8.11"
14+
VERSION = "0.8.12"
1515

1616
AUX_FILES = ['MANIFEST.in',
1717
'LICENSE',

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.8.11'
51+
version = '0.8.12'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.8.11'
53+
release = '0.8.12'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup
1313

1414
PACKAGE = 'pyral'
15-
VERSION = '0.8.11'
15+
VERSION = '0.8.12'
1616
OFFICIAL_NAME = 'Python toolkit for Rally REST API'
1717
PKG_URL_NAME = 'python-toolkit-rally-rest-api'
1818
RALLY_DEVELOPER_SITE = 'http://developer.rallydev.com'

0 commit comments

Comments
 (0)