We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 221f45f commit b436627Copy full SHA for b436627
pyproject.toml
@@ -4,7 +4,7 @@ dynamic = ["version"]
4
5
[tool.poetry]
6
name = "pipedream"
7
-version = "1.0.13"
+version = "1.1.0"
8
description = ""
9
readme = "README.md"
10
authors = []
src/pipedream/core/client_wrapper.py
@@ -27,10 +27,10 @@ def __init__(
27
28
def get_headers(self) -> typing.Dict[str, str]:
29
headers: typing.Dict[str, str] = {
30
- "User-Agent": "pipedream/1.0.13",
+ "User-Agent": "pipedream/1.1.0",
31
"X-Fern-Language": "Python",
32
"X-Fern-SDK-Name": "pipedream",
33
- "X-Fern-SDK-Version": "1.0.13",
+ "X-Fern-SDK-Version": "1.1.0",
34
**(self.get_custom_headers() or {}),
35
}
36
if self._project_environment is not None:
0 commit comments