Skip to content

Commit 6154a20

Browse files
Merge pull request #9353 from OpenMined/merge-0.9.2
Merge 0.9.2
2 parents 7c4c3f3 + e17d6fb commit 6154a20

25 files changed

Lines changed: 376 additions & 343 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.2-beta.8
2+
current_version = 0.9.3-beta.0
33
tag = False
44
tag_name = {new_version}
55
commit = True

.bumpversion_stable.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.9.1
2+
current_version = 0.9.2
33
tag = False
44
tag_name = {new_version}
55
commit = True

.github/workflows/pr-tests-stack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ jobs:
5858
5959
# - name: Run syft backend base image building test
6060
# if: steps.changes.outputs.stack == 'true'
61-
# timeout-minutes: 60
62-
# run: |
63-
# tox -e backend.test.basecpu
61+
# timeout-minutes: 60
62+
# run: |
63+
# tox -e backend.test.basecpu
6464
# run: |
6565
# echo "Skipping pr image test"
6666

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Launch <a href="https://docs.openmined.org/en/latest/deployment/deployment-doc-1
4141
```python
4242
import syft as sy
4343

44-
sy.requires(">=0.9.1,<0.9.2")
44+
sy.requires(">=0.9.2,<0.9.3")
4545

4646
server = sy.orchestra.launch(
4747
name="my-datasite",
@@ -70,7 +70,7 @@ Main way to use a Datasite is via our Syft client, in a Jupyter Notebook. Check
7070
```python
7171
import syft as sy
7272

73-
sy.requires(">=0.9.1,<0.9.2")
73+
sy.requires(">=0.9.2,<0.9.3")
7474

7575
datasite_client = sy.login(
7676
port=8080,
@@ -138,12 +138,12 @@ For questions about PySyft, reach out via `#support` on <a href="https://slack.o
138138

139139
**Latest Stable**
140140

141-
- `0.9.1` (Stable) - <a href="https://docs.openmined.org/en/latest/index.html">Docs</a>
141+
- `0.9.2` (Stable) - <a href="https://docs.openmined.org/en/latest/index.html">Docs</a>
142142
- Install PySyft (Stable): `pip install -U syft`
143143

144144
**Latest Beta**
145145

146-
- `0.9.2` (Beta) - `dev` branch 👈🏽
146+
- `0.9.3` (Beta) - `dev` branch 👈🏽
147147
- Install PySyft (Beta): `pip install -U syft --pre`
148148

149149
Find more about previous <a href="./releases.md">releases here</a>.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Mono Repo Global Version
2-
__version__ = "0.9.2-beta.8"
2+
__version__ = "0.9.3-beta.0"
33
# elsewhere we can call this file: `python VERSION` and simply take the stdout
44

55
# stdlib

notebooks/api/0.8/14-container-images.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
" if (bool(os.environ[\"DEV_MODE\"]) and running_as_container)\n",
151151
" else sy.__version__\n",
152152
")\n",
153-
"# syft_base_worker_tag = \"0.9.2-beta.1\""
153+
"syft_base_worker_tag = \"0.9.2-beta.7\""
154154
]
155155
},
156156
{

packages/grid/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Mono Repo Global Version
2-
__version__ = "0.9.2-beta.8"
2+
__version__ = "0.9.3-beta.0"
33
# elsewhere we can call this file: `python VERSION` and simply take the stdout
44

55
# stdlib

packages/grid/backend/grid/images/worker_cpu.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# NOTE: This dockerfile will be built inside a syft-backend container in PROD
66
# Hence COPY will not work the same way in DEV vs. PROD
77

8-
ARG SYFT_VERSION_TAG="0.9.2-beta.8"
8+
ARG SYFT_VERSION_TAG="0.9.3-beta.0"
99
FROM openmined/syft-backend:${SYFT_VERSION_TAG}
1010

1111
# should match base image python version

packages/grid/devspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ vars:
2828
DOCKER_IMAGE_RATHOLE: openmined/syft-rathole
2929
DOCKER_IMAGE_ENCLAVE_ATTESTATION: openmined/syft-enclave-attestation
3030
CONTAINER_REGISTRY: "docker.io"
31-
VERSION: "0.9.2-beta.8"
31+
VERSION: "0.9.3-beta.0"
3232
PLATFORM: $(uname -m | grep -q 'arm64' && echo "arm64" || echo "amd64")
3333

3434
# This is a list of `images` that DevSpace can build for this project

packages/grid/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "syft-ui",
3-
"version": "0.9.2-beta.8",
3+
"version": "0.9.3-beta.0",
44
"private": true,
55
"scripts": {
66
"dev": "pnpm i && vite dev --host --port 80",

0 commit comments

Comments
 (0)