Skip to content

Commit

Permalink
Merge pull request FederatedAI#5511 from FederatedAI/feature-2.1.0-up…
Browse files Browse the repository at this point in the history
…date_version

update version of fate from 2.0.0 to 2.1.0
  • Loading branch information
mgqa34 authored Feb 29, 2024
2 parents e314978 + a779ed5 commit 7d3b6ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions deploy/standalone-deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ FATE-Flow provides federated job life cycle management, includes scheduling, dat

##### 2.2.1.1 Installing FATE, FATE-Flow, FATE-Client
```shell
pip install fate_client[fate,fate_flow]==2.0.0
pip install fate_client[fate,fate_flow]==2.1.0
```
#### 2.2.1.2 Service Initialization
```shell
Expand Down Expand Up @@ -71,7 +71,7 @@ users can directly import fate and use built-in algorithms and secure protocols

#### 2.2.2.1 Installing FATE
```shell
pip install pyfate==2.0.0
pip install pyfate==2.1.0
```
#### 2.2.2.2 Using Guides
Refer to [examples](../../doc/2.0/fate/ml)
Expand All @@ -90,13 +90,13 @@ Refer to [examples](../../doc/2.0/fate/ml)
Set the necessary environment variables for deployment (note that environment variables set in this way are only valid for the current terminal session. If you open a new terminal session, such as logging in again or opening a new window, you will need to reset them).

```bash
export version={FATE version number for this deployment, e.g., 2.0.0}
export version={FATE version number for this deployment, e.g., 2.1.0}
```

Example:

```bash
export version=2.0.0
export version=2.1.0
```

### 3.2 Pull Docker Images
Expand Down
8 changes: 4 additions & 4 deletions deploy/standalone-deploy/README.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ FATE-Flow提供了联邦作业生命周期管理,包括调度、数据管理

##### 2.2.1.1 安装FATE、FATE-Flow、FATE-Client
```shell
pip install fate_client[fate,fate_flow]==2.0.0
pip install fate_client[fate,fate_flow]==2.1.0
```

#### 2.2.1.2 服务初始化
Expand Down Expand Up @@ -70,7 +70,7 @@ FATE提供多种联邦算法和安全协议, 用户可以在安装 FATE 后直

#### 2.2.1.1 安装 FATE
```shell
pip install pyfate==2.0.0
pip install pyfate==2.1.0
```

#### 2.2.2.2 使用指引
Expand All @@ -92,13 +92,13 @@ pip install pyfate==2.0.0
设置部署所需环境变量(注意,通过以下方式设置的环境变量仅在当前终端会话中有效。如果打开新的终端会话,例如重新登录或打开新窗口,请重新设置)。

```bash
export version={本次部署的 FATE 版本号, 如 2.0.0}
export version={本次部署的 FATE 版本号, 如 2.1.0}
```

示例:

```bash
export version=2.0.0
export version=2.1.0
```

### 3.2 拉取镜像
Expand Down
2 changes: 1 addition & 1 deletion doc/2.0/fate/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
1. install `fate_client` with extra package `fate`

```sh
python -m pip install -U pip && python -m pip install fate_client[fate,fate_flow]==2.0.0
python -m pip install -U pip && python -m pip install fate_client[fate,fate_flow]==2.1.0
```
after installing packages successfully, initialize fate_flow service and fate_client

Expand Down
2 changes: 1 addition & 1 deletion python/fate/_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
__version__ = "2.0.0"
__version__ = "2.1.0"
__provider__ = "fate"

0 comments on commit 7d3b6ef

Please sign in to comment.