From 1929ceb86598f3be03aedb5ebc0e991e3e21396e Mon Sep 17 00:00:00 2001 From: Angelo Paparazzi Date: Wed, 4 Dec 2024 17:05:38 -0600 Subject: [PATCH] chore: update changelog and version numbers --- .bumpversion.cfg | 2 +- .github/workflows/deploy.yml | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ ibm_watson/version.py | 2 +- setup.py | 2 +- 5 files changed, 24 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9a2744e1..654bd4b5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 8.1.0 +current_version = 9.0.0 commit = True message = Bump version: {current_version} → {new_version} [skip ci] diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 45b7fee7..3b58867e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -62,7 +62,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npx semantic-release #--dry-run --branches 9388_gha Uncomment for testxing purposes + run: npx semantic-release #--dry-run --branches 9388_gha Uncomment for testing purposes - name: Build binary wheel and a source tarball run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c3541a5..d3d27edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# [9.0.0](https://github.com/watson-developer-cloud/python-sdk/compare/v8.1.0...v9.0.0) (2024-12-04) + + +### Features + +* **discov2:** add functions for new batches api ([043eed4](https://github.com/watson-developer-cloud/python-sdk/commit/043eed48f1808ad3c0c325be18e2bd7ecc339c14)) +* **stt:** add new speech models ([4948b8f](https://github.com/watson-developer-cloud/python-sdk/commit/4948b8f210e5b9cd2d856aa90f2262a8bdf64444)) +* **stt:** readd interimResults and lowLatency wss params ([ffc67b8](https://github.com/watson-developer-cloud/python-sdk/commit/ffc67b8a0b213530cda23157848d79b5fea4b146)) +* **WxA:** add new functions and update required params ([3fe6243](https://github.com/watson-developer-cloud/python-sdk/commit/3fe62430c57e660b0903b0988fa3c53c489012d3)) +* Add support for message streaming and new APIs + +New functions: create_providers, list_providers, update_providers, create_release_export, download_release_export, create_release_import, get_release_import_status, message_stream, message_stream_stateless, parse_sse_stream_data, list_batches, pull_batches, push_batches + +### BREAKING CHANGES + +* **WxA:** `environmentId` now required for `message` and `messageStateless` functions +* **lt:** LanguageTranslator functionality has been removed +* **discov1:** DiscoveryV1 functionality has been removed +* **nlu:** training_data_content_type default changed to None + # [8.1.0](https://github.com/watson-developer-cloud/python-sdk/compare/v8.0.0...v8.1.0) (2024-05-17) diff --git a/ibm_watson/version.py b/ibm_watson/version.py index 2d63b74a..33de8d16 100644 --- a/ibm_watson/version.py +++ b/ibm_watson/version.py @@ -1 +1 @@ -__version__ = '8.1.0' +__version__ = '9.0.0' diff --git a/setup.py b/setup.py index 3e639723..9fd6acf3 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import setup from os import path -__version__ = '8.1.0' +__version__ = '9.0.0' # read contents of README file this_directory = path.abspath(path.dirname(__file__))