Skip to content

Commit 166413e

Browse files
committed
msrest 0.4.8
1 parent 5dba75f commit 166413e

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ To install:
2020
Release History
2121
---------------
2222

23+
2017-05-22 Version 0.4.8
24+
++++++++++++++++++++++++
25+
26+
**Bugfixes**
27+
28+
- Fix random "pool is closed" error (#29)
29+
- Fix requests dependency to version 2.x, since version 3.x is annunced to be breaking.
30+
2331
2017-04-04 Version 0.4.7
2432
++++++++++++++++++++++++
2533

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '0.4.7'
61+
version = '0.4.8'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '0.4.7'
63+
release = '0.4.8'
6464

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

msrest/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
# --------------------------------------------------------------------------
2626

2727

28-
msrest_version = "0.4.7"
28+
msrest_version = "0.4.8"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name='msrest',
31-
version='0.4.8rc1',
31+
version='0.4.8',
3232
author='Microsoft Corporation',
3333
packages=['msrest'],
3434
url=("https://github.com/Azure/msrest-for-python"),
@@ -48,10 +48,10 @@
4848
'License :: OSI Approved :: MIT License',
4949
'Topic :: Software Development'],
5050
install_requires=[
51-
"requests>=2.7.0",
51+
"requests~=2.14.1",
5252
"requests_oauthlib>=0.5.0",
5353
"isodate>=0.5.4",
54-
"certifi>=2015.9.6.2",
54+
"certifi>=2017.4.17",
5555
],
5656
extras_require={
5757
":python_version<'3.4'": ['enum34>=1.0.4'],

0 commit comments

Comments
 (0)