Skip to content

Commit 2a527bb

Browse files
authored
Merge pull request #9375 from OpenMined/0.9.3
Update dev from 0.9.3
2 parents 3916b73 + 2acbab1 commit 2a527bb

File tree

22 files changed

+182
-162
lines changed

22 files changed

+182
-162
lines changed

.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.3-beta.4
2+
current_version = 0.9.3
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.2
2+
current_version = 0.9.3
33
tag = False
44
tag_name = {new_version}
55
commit = True

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.2,<0.9.3")
44+
sy.requires(">=0.9.3,<0.9.4")
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.2,<0.9.3")
73+
sy.requires(">=0.9.3,<0.9.4")
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.2` (Stable) - <a href="https://docs.openmined.org/en/latest/index.html">Docs</a>
141+
- `0.9.3` (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.3` (Beta) - `dev` branch 👈🏽
146+
- `0.9.4` (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.3-beta.4"
2+
__version__ = "0.9.3"
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.7\""
153+
"syft_base_worker_tag = \"0.9.3-beta.4\""
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.3-beta.4"
2+
__version__ = "0.9.3"
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.3-beta.4"
8+
ARG SYFT_VERSION_TAG="0.9.3"
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.3-beta.4"
31+
VERSION: "0.9.3"
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.3-beta.4",
3+
"version": "0.9.3",
44
"private": true,
55
"scripts": {
66
"dev": "pnpm i && vite dev --host --port 80",

0 commit comments

Comments
 (0)