diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c413ff..a9aac4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ See [releases](https://github.com/mharrisb1/openai-responses-python/releases) for more. +## v0.11.2 + +Bumps support range to include OpenAI Python SDK v1.54. + ## v0.11.1 Bumps support range to include OpenAI Python SDK v1.51. diff --git a/pyproject.toml b/pyproject.toml index ac070ed..9d9dd55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openai-responses" -version = "0.11.1" +version = "0.11.2" description = "🧪🤖 Pytest plugin for automatically mocking OpenAI requests" authors = ["Michael Harris "] license = "MIT" @@ -20,7 +20,7 @@ openai_responses = "openai_responses.plugin" [tool.poetry.dependencies] python = ">=3.9,<4.0" -openai = ">=1.50,<1.52" +openai = ">=1.50,<1.55" requests-toolbelt = "^1" respx = "^0.20"