diff --git a/Changelog.md b/Changelog.md index 7c67a83..407de26 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,12 @@ # Changelog +## 7.0.0 + +- Added `num_tokens_prompt_total` to the types below. + This is a breaking change since `num_tokens_prompt_total` is mandatory. + - `EvaluationResponse` +- HTTP API version 1.16.0 or higher is required. + ## 6.0.0 - Added `num_tokens_prompt_total` to the types below. diff --git a/aleph_alpha_client/version.py b/aleph_alpha_client/version.py index 4bd1e5e..85eb590 100644 --- a/aleph_alpha_client/version.py +++ b/aleph_alpha_client/version.py @@ -1,2 +1,2 @@ -__version__ = "6.0.0" -MIN_API_VERSION = "1.15.0" +__version__ = "7.0.0" +MIN_API_VERSION = "1.16.0"