From bd8f3a525133c7f91c995d93474f598a12ffb766 Mon Sep 17 00:00:00 2001 From: Charles Beauville Date: Tue, 28 Nov 2023 19:21:19 +0100 Subject: [PATCH] Update version to 1.7.0 --- baselines/doc/source/conf.py | 2 +- doc/source/conf.py | 2 +- .../contributor-how-to-install-development-versions.rst | 4 ++-- examples/doc/source/conf.py | 2 +- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/baselines/doc/source/conf.py b/baselines/doc/source/conf.py index dd43080f299e..e1055aaed216 100644 --- a/baselines/doc/source/conf.py +++ b/baselines/doc/source/conf.py @@ -36,7 +36,7 @@ author = "The Flower Authors" # The full version, including alpha/beta/rc tags -release = "1.6.0" +release = "1.7.0" # -- General configuration --------------------------------------------------- diff --git a/doc/source/conf.py b/doc/source/conf.py index 87860e2c6e7b..8077d26aa6ae 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -85,7 +85,7 @@ author = "The Flower Authors" # The full version, including alpha/beta/rc tags -release = "1.6.0" +release = "1.7.0" # -- General configuration --------------------------------------------------- diff --git a/doc/source/contributor-how-to-install-development-versions.rst b/doc/source/contributor-how-to-install-development-versions.rst index e8028a35d706..243f4ef97e8e 100644 --- a/doc/source/contributor-how-to-install-development-versions.rst +++ b/doc/source/contributor-how-to-install-development-versions.rst @@ -59,5 +59,5 @@ Open a development version of the same notebook from branch `branch-name` by cha Install a `whl` on Google Colab: 1. In the vertical icon grid on the left hand side, select ``Files`` > ``Upload to session storage`` -2. Upload the whl (e.g., ``flwr-1.6.0-py3-none-any.whl``) -3. Change ``!pip install -q 'flwr[simulation]' torch torchvision matplotlib`` to ``!pip install -q 'flwr-1.6.0-py3-none-any.whl[simulation]' torch torchvision matplotlib`` +2. Upload the whl (e.g., ``flwr-1.7.0-py3-none-any.whl``) +3. Change ``!pip install -q 'flwr[simulation]' torch torchvision matplotlib`` to ``!pip install -q 'flwr-1.7.0-py3-none-any.whl[simulation]' torch torchvision matplotlib`` diff --git a/examples/doc/source/conf.py b/examples/doc/source/conf.py index dcb1788ea336..01cbb48c1587 100644 --- a/examples/doc/source/conf.py +++ b/examples/doc/source/conf.py @@ -27,7 +27,7 @@ author = "The Flower Authors" # The full version, including alpha/beta/rc tags -release = "1.6.0" +release = "1.7.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index ff71298c1c2d..2349d554a409 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "flwr" -version = "1.6.0" +version = "1.7.0" description = "Flower: A Friendly Federated Learning Framework" license = "Apache-2.0" authors = ["The Flower Authors "]