diff --git a/CHANGELOG.md b/CHANGELOG.md index ea401a01..f32b9b9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,14 @@ All notable changes to the **Sinch Python SDK** are documented in this file. --- +## v2.1.0 – + +### SDK + +- **[dependency]** Set up minimum version for `requests` to `>=2.0.0` (#152). + +--- + ## v2.0.1 – 2026-06-02 ### SMS diff --git a/pyproject.toml b/pyproject.toml index be877f57..b82833df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ keywords = ["sinch", "sdk"] [tool.poetry.dependencies] python = ">=3.9" -requests = "*" +requests = ">=2.0.0" pydantic = ">=2.0.0" [build-system] diff --git a/requirements-dev.txt b/requirements-dev.txt index 384715db..095b2f00 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -8,7 +8,7 @@ behave ruff # HTTP Libraries -requests +requests>=2.0.0 # Data Validation pydantic >= 2.0.0 \ No newline at end of file