diff --git a/CHANGELOG.md b/CHANGELOG.md index c90979c..363b682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [[10.3.1]](https://github.com/Clarifai/clarifai-python/releases/tag/10.3.1) - [PyPI](https://pypi.org/project/clarifai/10.3.1/) - 2024-04-19 + +### Added +- Pagination feature in Search. Added *pagination* param in ```Search()``` class and included *per_page* and *page_no* params in ```Search().query()``` [(#331)](https://github.com/Clarifai/clarifai-python/pull/331) +- *Alogrithm* param in ```Search()```[(#331)](https://github.com/Clarifai/clarifai-python/pull/331) + +### Changed +- Model Upload CLI Doc[(#329)](https://github.com/Clarifai/clarifai-python/pull/329) + +### Fixed +- RAG.setup() bug where if we delete a specific workflow and create another workflow with the same id, by adding timestamp while creating a new prompter model [(#332)](https://github.com/Clarifai/clarifai-python/pull/332) +- ```RAG.upload()``` to support folder of text files.[(#332)](https://github.com/Clarifai/clarifai-python/pull/332) + ## [[10.3.0]](https://github.com/Clarifai/clarifai-python/releases/tag/10.3.0) - [PyPI](https://pypi.org/project/clarifai/10.3.0/) - 2024-04-08 ### Added diff --git a/VERSION b/VERSION index 0719d81..a936832 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.3.0 +10.3.1 diff --git a/clarifai/versions.py b/clarifai/versions.py index a45a814..e1a6778 100644 --- a/clarifai/versions.py +++ b/clarifai/versions.py @@ -1,6 +1,6 @@ import os -CLIENT_VERSION = "10.3.0" +CLIENT_VERSION = "10.3.1" OS_VER = os.sys.platform PYTHON_VERSION = '.'.join( map(str, [os.sys.version_info.major, os.sys.version_info.minor, os.sys.version_info.micro]))