diff --git a/docs/guide/release-notes.asciidoc b/docs/guide/release-notes.asciidoc index d4e8dac..17d41eb 100644 --- a/docs/guide/release-notes.asciidoc +++ b/docs/guide/release-notes.asciidoc @@ -1,6 +1,15 @@ [[release-notes]] == Release notes +=== 0.2.0.20231031 + +* Allowed unrestricted ``body`` parameter (https://github.com/elastic/elasticsearch-serverless-python/pull/34[#34], see https://github.com/elastic/elasticsearch-py/pull/2383[elasticsearch-py#2383]) +* Added the Inference APIs (https://github.com/elastic/elasticsearch-serverless-python/pull/33[#33]) +* Remove APIs that do not exist on serverless (https://github.com/elastic/elasticsearch-serverless-python/pull/31[#31]) +* Set ``Elastic-Api-Version`` header (https://github.com/elastic/elasticsearch-serverless-python/pull/26[#26]) +* Switched to``Accept: application/json`` (https://github.com/elastic/elasticsearch-serverless-python/pull/27[#27]) +* Fixed elastic-transport-python dependency version (https://github.com/elastic/elasticsearch-serverless-python/pull/24[#24], contributed by https://github.com/crispybacon[@crispybacon]) + === 0.1.0.20231031 Initial release diff --git a/elasticsearch_serverless/_version.py b/elasticsearch_serverless/_version.py index 08836cf..3595f61 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.1.0.20231031" +__versionstr__ = "0.2.0.20231031" diff --git a/pyproject.toml b/pyproject.toml index a965db1..547f0e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "elasticsearch-serverless" -version = "0.1.0.20231031" +version = "0.2.0.20231031" description = "Python client for Elasticsearch Serverless" readme = "README.rst" license = "Apache-2.0"