From 1ea0c38dafa355ea52ebded4cd6b1652d2d7854b Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sun, 28 Jul 2024 13:03:17 +0000 Subject: [PATCH] chore(release): v2.10.0-rc.1 [skip ci] --- CHANGELOG.md | 83 ++++++++++++++++++++++++++++++++++++++++++++++++- ai21/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 84 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cad2812..fd81dff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,88 @@ # CHANGELOG +## v2.10.0-rc.1 (2024-07-28) + +### Chore + +* chore(deps-dev): bump setuptools from 69.5.1 to 70.0.0 (#186) + +Bumps [setuptools](https://github.com/pypa/setuptools) from 69.5.1 to 70.0.0. +- [Release notes](https://github.com/pypa/setuptools/releases) +- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) +- [Commits](https://github.com/pypa/setuptools/compare/v69.5.1...v70.0.0) + +--- +updated-dependencies: +- dependency-name: setuptools + dependency-type: indirect +... + +Signed-off-by: dependabot[bot] <support@github.com> +Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Co-authored-by: Asaf Joseph Gardin <39553475+Josephasafg@users.noreply.github.com> ([`51b59f8`](https://github.com/AI21Labs/ai21-python/commit/51b59f8eb166be299076d23fe646a292aa151f51)) + +* chore(deps): bump python-semantic-release/python-semantic-release (#179) + +Bumps [python-semantic-release/python-semantic-release](https://github.com/python-semantic-release/python-semantic-release) from 9.8.3 to 9.8.5. +- [Release notes](https://github.com/python-semantic-release/python-semantic-release/releases) +- [Changelog](https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.md) +- [Commits](https://github.com/python-semantic-release/python-semantic-release/compare/v9.8.3...v9.8.5) + +--- +updated-dependencies: +- dependency-name: python-semantic-release/python-semantic-release + dependency-type: direct:production + update-type: version-update:semver-patch +... + +Signed-off-by: dependabot[bot] <support@github.com> +Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> +Co-authored-by: Asaf Joseph Gardin <39553475+Josephasafg@users.noreply.github.com> ([`2175f81`](https://github.com/AI21Labs/ai21-python/commit/2175f81c29e8fcaac8ff2dfb67af2b4f0aceead7)) + +### Documentation + +* docs: fix base url for azure (#188) ([`bb84d35`](https://github.com/AI21Labs/ai21-python/commit/bb84d351fdda13b57617a6fc3fc5a12bce2d9528)) + +### Feature + +* feat: Pydantic migration (#189) + +* refactor: migrate from dataclass to pydantic for responses + +* fix: add backward compatability for to_json, from_json + +* fix: add missing by_alias, add from_json to penalty, add tests + +* ci: add pydantic matrix for unittests + +* ci: fix version mismatch + +* test: fix test + +* ci: add matrix to integration tests for pydantic version + +* ci: limit parallel run in integration tests + +* refactor: ci comments, use to_*, and from_* funcs internally + +* refactor: ci comments, attach alias by field, create private functions for serialization, add deprecation warning + +* refactor: ci comments, attach alias by field, create private functions for serialization, add deprecation warning + +* test: fix tests + +* test: fix tests + +* test: fix tests + +* chore: ci comments, remove basemodel from not_given ([`2591bc7`](https://github.com/AI21Labs/ai21-python/commit/2591bc7ce01f13b721fcd3b788fd67c898a5486f)) + ## v2.9.2 (2024-07-15) +### Chore + +* chore(release): v2.9.2 [skip ci] ([`30d9947`](https://github.com/AI21Labs/ai21-python/commit/30d9947b500e3c5d39858b187fc1f6d5c7a98916)) + ### Fix * fix: fix default for require_api_key in http client and other clients (#185) @@ -2064,7 +2145,7 @@ This reverts commit 66a008632304265914acb25a6eb8c6dfd8476911. ([`6bab551`](https * fix: name ([`e985980`](https://github.com/AI21Labs/ai21-python/commit/e98598027d955e3f0108ab1919e90195c5b2d52d)) -## v2.0.0-rc.1 (2023-12-18) +## v1.0.0-rc.2 (2023-12-18) ### Breaking diff --git a/ai21/version.py b/ai21/version.py index d6dc02e0..6479c044 100644 --- a/ai21/version.py +++ b/ai21/version.py @@ -1 +1 @@ -VERSION = "2.9.2" +VERSION = "2.10.0-rc.1" diff --git a/pyproject.toml b/pyproject.toml index 228d5cde..30923199 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ exclude_lines = [ [tool.poetry] name = "ai21" -version = "2.9.2" +version = "2.10.0-rc.1" description = "" authors = ["AI21 Labs"] readme = "README.md"