Skip to content

Commit c865a75

Browse files
authored
Merge pull request #198 from Microsoft/users/tedchamb/dev5
Remove DeprecationWarning: Creds parameter is deprecated. Set config.credentials instead.
2 parents f592060 + 591b6a2 commit c865a75

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

azure-devops/azure/devops/connection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class Connection(object):
2424

2525
def __init__(self, base_url=None, creds=None, user_agent=None):
2626
self._config = ClientConfiguration(base_url)
27+
self._config.credentials = creds
2728
self._addition_user_agent = user_agent
2829
if user_agent is not None:
2930
self._config.add_user_agent(user_agent)

azure-devops/azure/devops/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Licensed under the MIT License. See License.txt in the project root for license information.
44
# --------------------------------------------------------------------------------------------
55

6-
VERSION = "5.0.0b3"
6+
VERSION = "5.0.0b4"

azure-devops/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup, find_packages
77

88
NAME = "azure-devops"
9-
VERSION = "5.0.0b3"
9+
VERSION = "5.0.0b4"
1010

1111
# To install the library, run the following
1212
#

0 commit comments

Comments
 (0)