Skip to content

Commit

Permalink
chore: release 0.40.0
Browse files Browse the repository at this point in the history
Signed-off-by: Milouu <[email protected]>
  • Loading branch information
Milouu committed Sep 5, 2023
1 parent 66db67c commit 4e1d16f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## \[Unreleased\]

## [0.40.0](https://github.com/Substra/substrafl/releases/tag/0.40.0) - 2023-09-05

### Added

- Check the Python version used before generating the Dockerfile ([#155])(<https://github.com/Substra/substrafl/pull/155>)).
Expand Down Expand Up @@ -40,8 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- BREAKING: Input and output of aggregate tasks are now `shared_state`. It provides more flexibility to link different type of tasks with each other. To use
`download_aggregate_shared_state` on experiments launched before this commit, you can use the following code as a replacement of the function
([#142](https://github.com/Substra/substrafl/pull/142)).
`download_aggregate_shared_state` on experiments launched before this commit, you can use the following code as a replacement of the function
([#142](https://github.com/Substra/substrafl/pull/142)).

```py
import tempfile
Expand Down Expand Up @@ -91,7 +93,7 @@ with tempfile.TemporaryDirectory() as temp_folder:

## Changed

- BREAKING: depreciate the usage of `model_loading.download_algo_files` and `model_loading.load_algo` functions. New utils functions are now available. ([#125](https://github.com/Substra/substrafl/pull/125))
- BREAKING: depreciate the usage of `model_loading.download_algo_files` and `model_loading.load_algo` functions. New utils functions are now available. ([#125](https://github.com/Substra/substrafl/pull/125))
`model_loading.download_algo_state` to download a SubstraFL algo of a given round or rank.
`model_loading.download_shared_state` to download a SubstraFL shared object of a given round or rank.
`model_loading.download_aggregated_state` to download a SubstraFL aggregated of a given round or rank.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
install_requires=[
"numpy>=1.20.3, <1.24",
"cloudpickle>=1.6.0",
"substra~=0.46.0",
"substra~=0.47.0rc2",
"substratools~=0.20.0",
"pydantic>=1.9.0, <2.0",
"pip>=21.2",
Expand Down
2 changes: 1 addition & 1 deletion substrafl/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.39.0"
__version__ = "0.40.0rc2"

0 comments on commit 4e1d16f

Please sign in to comment.