Skip to content

Commit

Permalink
version_10.3.1 (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaychelliah committed Apr 19, 2024
1 parent 2ff42ed commit b0b776d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.3.0
10.3.1
2 changes: 1 addition & 1 deletion clarifai/versions.py
Original file line number Diff line number Diff line change
@@ -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]))

0 comments on commit b0b776d

Please sign in to comment.