We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 250101a commit 892f29eCopy full SHA for 892f29e
2 files changed
CONTRIBUTING.md
@@ -119,6 +119,6 @@ published release:
119
120
```bash
121
# After publishing v0.1.0b4, bump to v0.1.0b5 on main
122
-# Update both pyproject.toml and src/PowerPlatform/Dataverse/__version__.py
+# Update version in pyproject.toml (single source of truth)
123
# Commit directly to main: "Bump version to 0.1.0b5 for next development cycle"
124
```
src/PowerPlatform/Dataverse/data/_odata.py
@@ -35,7 +35,7 @@
35
VALIDATION_UNSUPPORTED_CACHE_KIND,
36
)
37
38
-from ..__version__ import __version__ as _SDK_VERSION
+from .. import __version__ as _SDK_VERSION
39
40
_USER_AGENT = f"DataverseSvcPythonClient:{_SDK_VERSION}"
41
_GUID_RE = re.compile(r"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}")
0 commit comments