Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

chore: release 0.7.1 #674

Merged
merged 5 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

### Removed

### Changed

### Fixed

### Docs


## [0.7.1] - 2023-02-15

### Added

- Add support for new loss and pooling options to the `finetuner.fit` method. ([#664](https://github.com/jina-ai/finetuner/pull/664))

- Add folder for example CSV files. ([#663](https://github.com/jina-ai/finetuner/pull/663))
Expand Down
2 changes: 1 addition & 1 deletion finetuner/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

HOST = 'JINA_FINETUNER_REGISTRY'
HUBBLE_REGISTRY = 'JINA_HUBBLE_REGISTRY'
DEFAULT_FINETUNER_HOST = 'https://api.finetuner.fit'
DEFAULT_FINETUNER_HOST = 'https://api.compute.finetuner.fit'
DEFAULT_HUBBLE_REGISTRY = 'https://api.hubble.jina.ai'

CONFIG = 'config'
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 0.7.0
version = 0.7.1

[flake8]
# E501 is too long lines - ignore as black takes care of that
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
install_requires=[
'docarray[common]>=0.21.0',
'trimesh==3.16.4',
'finetuner-stubs==0.12.5',
'finetuner-stubs==0.12.6',
'jina-hubble-sdk==0.33.1',
],
extras_require={
'full': [
'finetuner-commons==0.12.5',
'finetuner-commons==0.12.6',
],
'test': [
'black==22.3.0',
Expand Down