Skip to content

Commit

Permalink
Release v0.1.3 (#88)
Browse files Browse the repository at this point in the history
# Version changelog

## 0.1.3

* Added support for sdist
([#86](#86)).
* Removed redundant newlines from AAD OAuth responses
([#85](#85)).
* Update README.md with doc links
([#83](#83)).
  • Loading branch information
nfx committed May 3, 2023
1 parent a5ace59 commit de99f32
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Version changelog

## 0.1.3

* Added support for sdist ([#86](https://github.com/databricks/databricks-sdk-py/pull/86)).
* Removed redundant newlines from AAD OAuth responses ([#85](https://github.com/databricks/databricks-sdk-py/pull/85)).
* Update README.md with doc links ([#83](https://github.com/databricks/databricks-sdk-py/pull/83)).

## 0.1.2

* Fix `dbutils.fs.put()` utility ([#82](https://github.com/databricks/databricks-sdk-py/pull/82)).
Expand Down
2 changes: 1 addition & 1 deletion databricks/sdk/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ def __init__(self, cfg: Config = None):
total=6,
backoff_factor=1,
status_forcelist=[429],
method_whitelist=set({"POST"}) | set(Retry.DEFAULT_METHOD_WHITELIST),
allowed_methods={"POST"} | set(Retry.DEFAULT_ALLOWED_METHODS),
respect_retry_after_header=True,
raise_on_status=False, # return original response when retries have been exhausted
)
Expand Down
2 changes: 1 addition & 1 deletion databricks/sdk/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.2'
__version__ = '0.1.3'

0 comments on commit de99f32

Please sign in to comment.