Skip to content

Commit

Permalink
Merge pull request #9351 from OpenMined/bump-version-to-0.9.2
Browse files Browse the repository at this point in the history
bump
  • Loading branch information
koenvanderveen authored Oct 29, 2024
2 parents 355a264 + 23dcdae commit 993f8fe
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 19 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.9.2-beta.7
current_version = 0.9.2
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.9.1
current_version = 0.9.2
tag = False
tag_name = {new_version}
commit = True
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.9.2-beta.7"
__version__ = "0.9.2"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
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.9.2-beta.7"
__version__ = "0.9.2"
# 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.9.2-beta.7"
ARG SYFT_VERSION_TAG="0.9.2"
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.9.2-beta.7"
VERSION: "0.9.2"
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.9.2-beta.7",
"version": "0.9.2",
"private": true,
"scripts": {
"dev": "pnpm i && vite dev --host --port 80",
Expand Down
4 changes: 2 additions & 2 deletions packages/grid/helm/syft/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: syft
description: Perform numpy-like analysis on data that remains in someone elses server
type: application
version: "0.9.2-beta.7"
appVersion: "0.9.2-beta.7"
version: "0.9.2"
appVersion: "0.9.2"
home: https://github.com/OpenMined/PySyft/
icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png
4 changes: 2 additions & 2 deletions packages/grid/helm/syft/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
global:
# Affects only backend, frontend, and seaweedfs containers
registry: docker.io
version: 0.9.2-beta.7
version: 0.9.2

# Force default secret values for development. DO NOT SET THIS TO FALSE IN PRODUCTION
randomizedSecrets: true
Expand All @@ -10,7 +10,7 @@ global:
kaniko:
version: "v1.23.2"

workerVersion: 0.9.2-beta.7
workerVersion: 0.9.2

# =================================================================================

Expand Down
2 changes: 1 addition & 1 deletion packages/syft/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = syft
version = attr: "0.9.2-beta.7"
version = attr: "0.9.2"
description = Perform numpy-like analysis on data that remains in someone elses server
author = OpenMined
author_email = [email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/syft/src/syft/VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mono Repo Global Version
__version__ = "0.9.2-beta.7"
__version__ = "0.9.2"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
2 changes: 1 addition & 1 deletion packages/syft/src/syft/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.9.2-beta.7"
__version__ = "0.9.2"

# stdlib
from collections.abc import Callable
Expand Down
2 changes: 1 addition & 1 deletion packages/syft/src/syft/stable_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
LATEST_STABLE_SYFT = "0.9.1"
LATEST_STABLE_SYFT = "0.9.2"
8 changes: 4 additions & 4 deletions packages/syftcli/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
manifestVersion: 1.0

syftVersion: 0.9.2-beta.7
dockerTag: 0.9.2-beta.7
syftVersion: 0.9.2
dockerTag: 0.9.2

images:
- docker.io/openmined/syft-frontend:0.9.2-beta.7
- docker.io/openmined/syft-backend:0.9.2-beta.7
- docker.io/openmined/syft-frontend:0.9.2
- docker.io/openmined/syft-backend:0.9.2
- docker.io/library/postgres:16.1
- docker.io/traefik:v2.11.0

Expand Down

0 comments on commit 993f8fe

Please sign in to comment.