diff --git a/CHANGELOG.md b/CHANGELOG.md index dac0ee18..f41ed3cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [[10.11.0]](https://github.com/Clarifai/clarifai-python/releases/tag/10.11.0) - [PyPI](https://pypi.org/project/clarifai/10.11.0/) - 2024-12-03 + +### Changed + - Fixed issue of bounding box info edge cases [(#457)] (https://github.com/Clarifai/clarifai-python/pull/457) + - Supports downloading data.parts as bytes [(#456)] (https://github.com/Clarifai/clarifai-python/pull/456) + - Changed default env to prod for Model upload [(#455)] (https://github.com/Clarifai/clarifai-python/pull/455) + - Added tests for all stream and generate methods [(#452)] (https://github.com/Clarifai/clarifai-python/pull/452) + - Added Codecoverage test report in PRs [(#450)] (https://github.com/Clarifai/clarifai-python/pull/450) + ## [[10.10.1]](https://github.com/Clarifai/clarifai-python/releases/tag/10.10.1) - [PyPI](https://pypi.org/project/clarifai/10.10.1/) - 2024-11-18 ### Changed diff --git a/clarifai/__init__.py b/clarifai/__init__.py index 71004d19..120f8138 100644 --- a/clarifai/__init__.py +++ b/clarifai/__init__.py @@ -1 +1 @@ -__version__ = "10.10.1" +__version__ = "10.11.0" diff --git a/requirements.txt b/requirements.txt index 9493efe3..cfb296cc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -clarifai-grpc>=10.10.1 +clarifai-grpc>=10.10.2 clarifai-protocol>=0.0.6 numpy>=1.22.0 tqdm>=4.65.0