Skip to content

Commit

Permalink
version 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
DaSenf1860 committed Apr 18, 2024
1 parent 1136b83 commit a6dd42f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ They are designed to automate your Fabric processes.

This SDK helps to interact with the Fabric APIs in a more Pythonic way.
Additionally it brings some extra features like:
- Authentication is handled for you (currently Azure CLI Authentication and Service Principal Authentication are supported)
- Authentication is handled for you (currently Azure CLI Authentication and Service Principal Authentication are supported, as well as Synapse Spark Authentication in Fabric Notebooks)
- Waiting for completion of long running operations
- Retry logic when hitting the API rate limits
- Referencing objects by name instead of ID
Expand Down
2 changes: 1 addition & 1 deletion msfabricpysdkcore/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ def __init__(self):
def get_token(self):
"""Get token from Azure AD"""
token = mssparkutils.credentials.getToken("pbi")
return token.token
return token


2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "msfabricpysdkcore"
version = "0.0.8"
version = "0.0.9"
dynamic = ["dependencies"]
authors = [
{ name="Andreas Rederer"},
Expand Down
2 changes: 1 addition & 1 deletion releasenotes/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release Notes

## 0.0.8
## 0.0.9

### New Features

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='msfabricpysdkcore',
version='0.8',
version='0.9',
packages=find_packages(),
install_requires=[
'requests>=2.30.0',
Expand Down

0 comments on commit a6dd42f

Please sign in to comment.