Skip to content

Commit

Permalink
Merge pull request #8256 from OpenMined/rasswanth/prep_release_0.8.2
Browse files Browse the repository at this point in the history
bump to release version [0.8.2]
  • Loading branch information
rasswanth-s authored Nov 15, 2023
2 parents d521e6f + 600a6ab commit c8d0b7b
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 25 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.2-beta.60
current_version = 0.8.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.8.2-beta.60"
__version__ = "0.8.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.8.2-beta.60"
__version__ = "0.8.2"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
4 changes: 2 additions & 2 deletions packages/grid/devspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ pipelines:
run: |-
run_dependencies --all
ensure_pull_secrets --all
build_images --all -t $(git rev-parse --short=6 HEAD) -t 0.8.2-beta.60 -t dev-latest
build_images --all -t $(git rev-parse --short=6 HEAD) -t 0.8.2 -t dev-latest
create_deployments --all
vars:
DEVSPACE_ENV_FILE: "default.env"
CONTAINER_REGISTRY: "docker.io"
VERSION: "0.8.2-beta.60"
VERSION: "0.8.2"

# This is a list of `images` that DevSpace can build for this project
# We recommend to skip image building during development (devspace dev) as much as possible
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": "pygrid-ui",
"version": "0.8.2-beta.60",
"version": "0.8.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,8 +2,8 @@ apiVersion: v2
name: syft
description: Perform numpy-like analysis on data that remains in someone elses server
type: application
version: "0.8.2-beta.60"
appVersion: "0.8.2-beta.60"
version: "0.8.2"
appVersion: "0.8.2"
icon: https://raw.githubusercontent.com/OpenMined/PySyft/dev/docs/img/title_syft_light.png

dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ data:
RABBITMQ_VERSION: 3
SEAWEEDFS_VERSION: 3.55
DOCKER_IMAGE_SEAWEEDFS: chrislusf/seaweedfs:3.55
VERSION: 0.8.2-beta.60
VERSION: 0.8.2
VERSION_HASH: unknown
STACK_API_KEY: ""

Expand Down
4 changes: 2 additions & 2 deletions packages/grid/podman/podman-kube/podman-syft-kube.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
- configMapRef:
name: podman-syft-config

image: docker.io/openmined/grid-backend:0.8.2-beta.60
image: docker.io/openmined/grid-backend:0.8.2
imagePullPolicy: IfNotPresent
resources: {}
tty: true
Expand All @@ -57,7 +57,7 @@ spec:
envFrom:
- configMapRef:
name: podman-syft-config
image: docker.io/openmined/grid-frontend:0.8.2-beta.60
image: docker.io/openmined/grid-frontend:0.8.2
imagePullPolicy: IfNotPresent
resources: {}
tty: true
Expand Down
4 changes: 2 additions & 2 deletions packages/hagrid/hagrid/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os
from typing import Any

STABLE_BRANCH = "0.8.1"
DEFAULT_BRANCH = "0.8.1"
STABLE_BRANCH = "0.8.2"
DEFAULT_BRANCH = "0.8.2"
DEFAULT_REPO = "OpenMined/PySyft"

arg_defaults = {
Expand Down
4 changes: 2 additions & 2 deletions packages/hagrid/hagrid/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
from .nb_output import NBOutput
from .version import __version__

LATEST_STABLE_SYFT = "0.8.1"
LATEST_BETA_SYFT = "0.8.2-beta.60"
LATEST_STABLE_SYFT = "0.8.2"
LATEST_BETA_SYFT = "0.8.2"

DOCKER_ERROR = """
You are running an old version of docker, possibly on Linux. You need to install v2.
Expand Down
4 changes: 2 additions & 2 deletions packages/hagrid/hagrid/manifest_template.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
manifestVersion: 0.1
hagrid_version: 0.3.84
syft_version: 0.8.2-beta.60
dockerTag: 0.8.2-beta.60
syft_version: 0.8.2
dockerTag: 0.8.2
baseUrl: https://raw.githubusercontent.com/OpenMined/PySyft/
hash: a420fed25b999b004d7b5656f1d6d98f8949a69d
target_dir: ~/.hagrid/PySyft/
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.8.2-beta.60"
version = attr: "0.8.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.8.2-beta.60"
__version__ = "0.8.2"
# elsewhere we can call this file: `python VERSION` and simply take the stdout

# stdlib
Expand Down
4 changes: 2 additions & 2 deletions packages/syft/src/syft/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.8.2-beta.60"
__version__ = "0.8.2"

# stdlib
import pathlib
Expand Down Expand Up @@ -79,7 +79,7 @@
from .util.util import get_root_data_path # noqa: F401
from .util.version_compare import make_requires

LATEST_STABLE_SYFT = "0.8.1"
LATEST_STABLE_SYFT = "0.8.2"
requires = make_requires(LATEST_STABLE_SYFT, __version__)


Expand Down
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.8.2-beta.60
dockerTag: 0.8.2-beta.60
syftVersion: 0.8.2
dockerTag: 0.8.2

images:
- docker.io/openmined/grid-frontend:0.8.2-beta.60
- docker.io/openmined/grid-backend:0.8.2-beta.60
- docker.io/openmined/grid-frontend:0.8.2
- docker.io/openmined/grid-backend:0.8.2
- docker.io/library/mongo:latest
- docker.io/traefik:v2.10

Expand Down

0 comments on commit c8d0b7b

Please sign in to comment.