Skip to content

Commit

Permalink
Merge pull request #9093 from OpenMined/update-dev-with-0.8.8
Browse files Browse the repository at this point in the history
Update dev with 0.8.8
  • Loading branch information
shubham3121 authored Jul 25, 2024
2 parents 85a4d86 + 04e87bc commit 344b64f
Show file tree
Hide file tree
Showing 21 changed files with 160 additions and 141 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.8-beta.4
current_version = 0.9.0-beta.0
tag = False
tag_name = {new_version}
commit = True
Expand Down
2 changes: 1 addition & 1 deletion .bumpversion_stable.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.7
current_version = 0.8.8
tag = False
tag_name = {new_version}
commit = True
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $ pip install -U syft[data_science]
```python
# from Jupyter / Python
import syft as sy
sy.requires(">=0.8.7,<0.8.8")
sy.requires(">=0.8.8,<0.8.9")
server = sy.orchestra.launch(
name="my-datasite",
port=8080,
Expand All @@ -45,7 +45,7 @@ Starting syft-datasite server on 0.0.0.0:8080

```python
import syft as sy
sy.requires(">=0.8.6,<0.8.7")
sy.requires(">=0.8.8,<0.8.9")
datasite_client = sy.login(
port=8080,
email="[email protected]",
Expand Down Expand Up @@ -145,12 +145,12 @@ helm install ... --set ingress.class="gce"

# Versions

`0.9.0` - Coming soon...
`0.8.8` (Beta) - `dev` branch 👈🏽 <a href="https://github.com/OpenMined/PySyft/tree/dev/notebooks/api/0.8">API</a> - Coming soon...
`0.8.7` (Stable) - <a href="https://github.com/OpenMined/PySyft/tree/0.8.7/notebooks/api/0.8">API</a>
`0.9.0` (Beta) - `dev` branch 👈🏽 <a href="https://github.com/OpenMined/PySyft/tree/dev/notebooks/api/0.8">API</a> - Coming soon...
`0.8.8` (Stable) - <a href="https://github.com/OpenMined/PySyft/tree/0.8.8/notebooks/api/0.8">API</a>

Deprecated:

- `0.8.7` - <a href="https://github.com/OpenMined/PySyft/tree/0.8.7/notebooks/api/0.8">API</a>
- `0.8.6` - <a href="https://github.com/OpenMined/PySyft/tree/0.8.6/notebooks/api/0.8">API</a>
- `0.8.5-post.2` - <a href="https://github.com/OpenMined/PySyft/tree/0.8.5-post.2/notebooks/api/0.8">API</a>
- `0.8.4` - <a href="https://github.com/OpenMined/PySyft/tree/0.8.4/notebooks/api/0.8">API</a>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mono Repo Global Version
__version__ = "0.8.8-beta.4"
__version__ = "0.9.0-beta.0"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
2 changes: 1 addition & 1 deletion notebooks/api/0.8/10-container-images.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
" else sy.__version__\n",
")\n",
"# TODO: Remove this once the stable syft version is released\n",
"syft_base_worker_tag = \"0.8.7-beta.15\""
"syft_base_worker_tag = \"0.8.8-beta.4\""
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mono Repo Global Version
__version__ = "0.8.8-beta.4"
__version__ = "0.9.0-beta.0"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/backend/grid/images/worker_cpu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# NOTE: This dockerfile will be built inside a syft-backend container in PROD
# Hence COPY will not work the same way in DEV vs. PROD

ARG SYFT_VERSION_TAG="0.8.8-beta.4"
ARG SYFT_VERSION_TAG="0.9.0-beta.0"
FROM openmined/syft-backend:${SYFT_VERSION_TAG}

# should match base image python version
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ vars:
DOCKER_IMAGE_RATHOLE: openmined/syft-rathole
DOCKER_IMAGE_ENCLAVE_ATTESTATION: openmined/syft-enclave-attestation
CONTAINER_REGISTRY: "docker.io"
VERSION: "0.8.8-beta.4"
VERSION: "0.9.0-beta.0"
PLATFORM: $(uname -m | grep -q 'arm64' && echo "arm64" || echo "amd64")

# This is a list of `images` that DevSpace can build for this project
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "syft-ui",
"version": "0.8.8-beta.4",
"version": "0.9.0-beta.0",
"private": true,
"scripts": {
"dev": "pnpm i && vite dev --host --port 80",
Expand Down
Loading

0 comments on commit 344b64f

Please sign in to comment.