Skip to content

Commit

Permalink
version_10.2.0 (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaychelliah authored Mar 18, 2024
1 parent a6f944c commit 9738220
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [[10.2.0]](https://github.com/Clarifai/clarifai-python/releases/tag/10.2.0) - [PyPI](https://pypi.org/project/clarifai/10.2.0/) - 2024-03-18

### Added
- Model Export support [(#304)](https://github.com/Clarifai/clarifai-python/pull/304)
- Retry upload function from failed log files [(#307)](https://github.com/Clarifai/clarifai-python/pull/307)

### Fixed
- File not found error in model serving CLI [(#305)](https://github.com/Clarifai/clarifai-python/pull/305)
- Workflow YAML schema bug [(#308)](https://github.com/Clarifai/clarifai-python/pull/308)
- Base URL passing bug [(#308)](https://github.com/Clarifai/clarifai-python/pull/308)

## [[10.1.1]](https://github.com/Clarifai/clarifai-python/releases/tag/10.1.1) - [PyPI](https://pypi.org/project/clarifai/10.1.1/) - 2024-02-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.1.1
10.2.0
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.1.1"
CLIENT_VERSION = "10.2.0"
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 9738220

Please sign in to comment.