Skip to content

Commit

Permalink
VERSION 10.2.1 (#316)
Browse files Browse the repository at this point in the history
* version_10.2.1
  • Loading branch information
sanjaychelliah authored Mar 19, 2024
1 parent faa15b4 commit b1939e2
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.2.1]](https://github.com/Clarifai/clarifai-python/releases/tag/10.2.1) - [PyPI](https://pypi.org/project/clarifai/10.2.1/) - 2024-03-19

### Added
- Dataset version ID support in ```app.dataset()``` and ```Dataset()``` [(#315)](https://github.com/Clarifai/clarifai-python/pull/315)

### Changed
- Dataset Export function to internally download the dataset archive zip with the function ```Dataset.archive_zip()```[(#303)](https://github.com/Clarifai/clarifai-python/pull/303)
- The backoff iterator to support custom starting count, so different process can have different starting wait times.[(#313)](https://github.com/Clarifai/clarifai-python/pull/313)

### Fixed
- Removed the key *base_embed_model* from params.yaml file, since the model training by default considers the base embed model which is set for the app and no need to define it again in params file.[(#314)](https://github.com/Clarifai/clarifai-python/pull/314)

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

Please sign in to comment.