Skip to content

Commit

Permalink
Merge pull request #9067 from OpenMined/merge-0.8.7-to-dev
Browse files Browse the repository at this point in the history
Merge 0.8.7 to dev
  • Loading branch information
shubham3121 authored Jul 19, 2024
2 parents c5780c3 + 283b070 commit 3dfa120
Show file tree
Hide file tree
Showing 21 changed files with 1,211 additions and 1,190 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.7-beta.16
current_version = 0.8.8-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.6
current_version = 0.8.7
tag = False
tag_name = {new_version}
commit = True
Expand Down
7 changes: 4 additions & 3 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.6,<0.8.7")
sy.requires(">=0.8.7,<0.8.8")
server = sy.orchestra.launch(
name="my-datasite",
port=8080,
Expand Down Expand Up @@ -146,11 +146,12 @@ helm install ... --set ingress.class="gce"
# Versions

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

Deprecated:

- `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>
- `0.8.3` - <a href="https://github.com/OpenMined/PySyft/tree/0.8.3/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.7-beta.16"
__version__ = "0.8.8-beta.0"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
3 changes: 2 additions & 1 deletion notebooks/api/0.8/10-container-images.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@
" if (bool(os.environ[\"DEV_MODE\"]) and running_as_container)\n",
" else sy.__version__\n",
")\n",
"syft_base_worker_tag"
"# TODO: Remove this once the stable syft version is released\n",
"syft_base_worker_tag = \"0.8.7-beta.15\""
]
},
{
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.7-beta.16"
__version__ = "0.8.8-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.7-beta.16"
ARG SYFT_VERSION_TAG="0.8.8-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.7-beta.16"
VERSION: "0.8.8-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.7-beta.16",
"version": "0.8.8-beta.0",
"private": true,
"scripts": {
"dev": "pnpm i && vite dev --host --port 80",
Expand Down
Loading

0 comments on commit 3dfa120

Please sign in to comment.