Skip to content

Commit

Permalink
VERSION_10.3.2 (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaychelliah committed May 3, 2024
1 parent 6e9f3e1 commit ebee50e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [[10.3.2]](https://github.com/Clarifai/clarifai-python/releases/tag/10.3.2) - [PyPI](https://pypi.org/project/clarifai/10.3.2/) - 2024-05-03

### Added
- Flag to download model. If *export_dir* param in ```Model().export()``` is provided, the exported model will be saved in the specified directory else export status will be shown.[(#337)](https://github.com/Clarifai/clarifai-python/pull/337)
- Label ID support in Dataloaders(*label_ids* param) and get_proto functions in Inputs class.[(#338)](https://github.com/Clarifai/clarifai-python/pull/338)

### Changed
- Logger for ```Inputs().upload_annotations``` to show full details of failed annotations.[(#339)](https://github.com/Clarifai/clarifai-python/pull/339)

### Fixed
- RAG upload bug by changing llama-index-core version to 0.10.24 in ImportError message [(#336)](https://github.com/Clarifai/clarifai-python/pull/336)

## [[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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.3.1
10.3.2
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.1"
CLIENT_VERSION = "10.3.2"
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 ebee50e

Please sign in to comment.