diff --git a/CHANGELOG.md b/CHANGELOG.md index d4f8a7d5..e1cfdc13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [1.9.1](https://github.com/opsmill/infrahub-sdk-python/tree/v1.9.1) - 2025-04-04 + +### Changed + +- Improve error message when a schema received from the server is not JSON valid. The new exception will be of type `infrahub_sdk.exceptions.JsonDecodeError` instead of `json.decoder.JSONDecodeError` + ## [1.10.0](https://github.com/opsmill/infrahub-sdk-python/tree/v1.10.0) - 2025-04-01 ### Deprecated diff --git a/changelog/+jsondecode.changed.md b/changelog/+jsondecode.changed.md deleted file mode 100644 index 030c274b..00000000 --- a/changelog/+jsondecode.changed.md +++ /dev/null @@ -1 +0,0 @@ -Improve error message when a schema received from the server is not JSON valid. The new exception will be of type `infrahub_sdk.exceptions.JsonDecodeError` instead of `json.decoder.JSONDecodeError` \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index bfe45a86..f51be0a1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "infrahub-sdk" -version = "1.10.0" +version = "1.10.1" description = "Python Client to interact with Infrahub" authors = ["OpsMill "] readme = "README.md"