diff --git a/changelog.md b/changelog.md index 9cb8230..2394d2e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +## 1.1.6 - 2025-12-22 +* SDK regeneration +* Unable to analyze changes with AI, incrementing PATCH version. + ## 1.1.5 - 2025-12-19 * SDK regeneration * Unable to analyze changes with AI, incrementing PATCH version. diff --git a/pyproject.toml b/pyproject.toml index 7b5c428..0ef3755 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ dynamic = ["version"] [tool.poetry] name = "schematichq" -version = "1.1.5" +version = "1.1.6" description = "" readme = "README.md" authors = [] diff --git a/src/schematic/core/client_wrapper.py b/src/schematic/core/client_wrapper.py index 618be25..efb1347 100644 --- a/src/schematic/core/client_wrapper.py +++ b/src/schematic/core/client_wrapper.py @@ -25,7 +25,7 @@ def get_headers(self) -> typing.Dict[str, str]: "User-Agent": "schematichq/AUTO", "X-Fern-Language": "Python", "X-Fern-SDK-Name": "schematichq", - "X-Fern-SDK-Version": "1.1.5", + "X-Fern-SDK-Version": "1.1.6", **(self.get_custom_headers() or {}), } headers["X-Schematic-Api-Key"] = self.api_key diff --git a/src/schematic/environment.py b/src/schematic/environment.py index 0342003..535a605 100644 --- a/src/schematic/environment.py +++ b/src/schematic/environment.py @@ -4,4 +4,4 @@ class SchematicEnvironment(enum.Enum): - DEFAULT = "https://api.schematichq.com" + DEFAULT = "https://api.schematichq.dev"