Thanks to visit codestin.com Credit goes to github.com
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 246468a commit 0330025Copy full SHA for 0330025
pyproject.toml
@@ -3,7 +3,7 @@ name = "pipedream"
3
4
[tool.poetry]
5
name = "pipedream"
6
-version = "1.0rc1"
+version = "1.0.0"
7
description = ""
8
readme = "README.md"
9
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.0rc1",
+ "User-Agent": "pipedream/1.0.0",
31
"X-Fern-Language": "Python",
32
"X-Fern-SDK-Name": "pipedream",
33
- "X-Fern-SDK-Version": "1.0rc1",
+ "X-Fern-SDK-Version": "1.0.0",
34
**(self.get_custom_headers() or {}),
35
}
36
if self._project_environment is not None:
0 commit comments