diff --git a/docs/guide/release-notes.asciidoc b/docs/guide/release-notes.asciidoc index 2d60ec6..a736d75 100644 --- a/docs/guide/release-notes.asciidoc +++ b/docs/guide/release-notes.asciidoc @@ -1,6 +1,11 @@ [[release-notes]] == Release notes +=== 0.6.0.20231031 (2024-11-08) + +- Support Python 3.13 (https://github.com/elastic/elasticsearch-serverless-python/pull/88[#88]) +- Emit Python warnings for beta and tech preview APIs (https://github.com/elastic/elasticsearch-serverless-python/pull/96[#96]) + === 0.5.0.20231031 (2024-10-11) - Fix OTel context loss in bulk helpers (https://github.com/elastic/elasticsearch-serverless-python/pull/87[#87]) diff --git a/elasticsearch_serverless/_version.py b/elasticsearch_serverless/_version.py index cb532b5..8470114 100644 --- a/elasticsearch_serverless/_version.py +++ b/elasticsearch_serverless/_version.py @@ -15,4 +15,4 @@ # specific language governing permissions and limitations # under the License. -__versionstr__ = "0.5.0.20231031" +__versionstr__ = "0.6.0.20231031" diff --git a/pyproject.toml b/pyproject.toml index 199501b..5f65ef9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "elasticsearch-serverless" -version = "0.5.0.20231031" +version = "0.6.0.20231031" description = "Python client for Elasticsearch Serverless" readme = "README.rst" license = "Apache-2.0"