diff --git a/CHANGELOG.md b/CHANGELOG.md index 87282ed6..c51a2254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [[11.0.1]](https://github.com/Clarifai/clarifai-python/releases/tag/11.0.1) - [PyPI](https://pypi.org/project/clarifai/11.0.1/) - 2025-01-14 + +### Changed + + - Take user_id from Env variable [(#477)] (https://github.com/Clarifai/clarifai-python/pull/477) + - Added HF token Validation [(#476)] (https://github.com/Clarifai/clarifai-python/pull/476) + - Fix Model prediction methods when configured with a dedicated compute_cluster_id and nodepool_id [(#475)] (https://github.com/Clarifai/clarifai-python/pull/475) + - Fix model upload issues [(#474)] (https://github.com/Clarifai/clarifai-python/pull/474) + - Improved error logging [(#473)] (https://github.com/Clarifai/clarifai-python/pull/473) + ## [[11.0.0]](https://github.com/Clarifai/clarifai-python/releases/tag/11.0.0) - [PyPI](https://pypi.org/project/clarifai/11.0.0/) - 2025-01-07 ### Changed diff --git a/clarifai/__init__.py b/clarifai/__init__.py index 5b461163..b5d09801 100644 --- a/clarifai/__init__.py +++ b/clarifai/__init__.py @@ -1 +1 @@ -__version__ = "11.0.0" +__version__ = "11.0.1" diff --git a/requirements.txt b/requirements.txt index ac0c810c..5093e43e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -clarifai-grpc>=10.11.2 +clarifai-grpc>=11.0.0 clarifai-protocol>=0.0.14 numpy>=1.22.0 tqdm>=4.65.0