Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 1.0.0 #257

Merged
merged 5 commits into from
Oct 14, 2024
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- towncrier release notes start -->

## [1.0.0](https://github.com/Substra/substrafl/releases/tag/1.0.0) - 2024-10-14

### Added

- The `Dependency` object now takes an optional parameter `binary_dependencies` to specify binary packages to be
installed in the computation container. ([#249](https://github.com/Substra/substrafl/pull/249))

### Changed

- cuda base docker image is now `nvidia/cuda:12.6.1-runtime-ubuntu24.04` ([#248](https://github.com/Substra/substrafl/pull/248))
- Remove parasite verisons of `setuptools` in Dockerfiles and install `setuptools>70.0.0` to tackle last identified CVEs ([#250](https://github.com/Substra/substrafl/pull/250))

### Fixed

- Bump NumPy and pytorch versions in tests. ([#252](https://github.com/Substra/substrafl/pull/252))

### Removed

- Drop Python 3.9 support. ([#247](https://github.com/Substra/substrafl/pull/247))


## [0.47.0](https://github.com/Substra/substrafl/releases/tag/0.47.0) - 2024-09-12

### Added
Expand Down
1 change: 0 additions & 1 deletion changes/247.removed

This file was deleted.

1 change: 0 additions & 1 deletion changes/248.changed

This file was deleted.

2 changes: 0 additions & 2 deletions changes/249.added

This file was deleted.

1 change: 0 additions & 1 deletion changes/250.changed

This file was deleted.

1 change: 0 additions & 1 deletion changes/252.fixed

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ readme = "README.md"
dependencies = [
"numpy>=1.24",
"cloudpickle>=1.6.0",
"substra~=0.54.0",
"substratools~=0.22.0",
"substra~=1.0.0",
"substratools~=1.0.0",
"pydantic>=2.3.0,<3.0",
"pip>=21.2",
"tqdm",
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.47.0"
__version__ = "1.0.0"
Loading