Skip to content

Commit 077c012

Browse files
committed
version updates
1 parent 0effcd3 commit 077c012

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
lines changed

backend/app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Settings(BaseSettings):
99
API_V2_STR: str = "/api/v2"
1010
admin_email: str = "[email protected]"
1111
frontend_url: str = "http://localhost:3000"
12-
version: str = "2.0.0-beta.1"
12+
version: str = "2.0.0-beta.2"
1313

1414
# Unique secret for hashing API keys. Generate with `openssl rand -hex 32`
1515
local_auth_secret = "clowder_secret_key"

backend/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
description="A cloud native data management framework to support any research domain. Clowder was "
7171
"developed to help researchers and scientists in data intensive domains manage raw data, complex "
7272
"metadata, and automatic data pipelines. ",
73-
version="2.0.0-beta.1",
73+
version="2.0.0-beta.2",
7474
contact={"name": "Clowder", "url": "https://clowderframework.org/"},
7575
license_info={
7676
"name": "Apache 2.0",

deployments/kubernetes/charts/clowder2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ hostname: { your hostname. E.g. clowder2.software-dev.ncsa.illinois.edu }
1717
frontend:
1818
image:
1919
repository: clowder/clowder2-frontend
20-
tag: 2.0.0-beta.1
20+
tag: 2.0.0-beta.2
2121
pullPolicy: Always
2222

2323
backend:
2424
image:
2525
repository: clowder/clowder2-backend
26-
tag: 2.0.0-beta.1
26+
tag: 2.0.0-beta.2
2727
pullPolicy: Always
2828

2929
geoserver:

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ services:
3737
- /var/run/docker.sock:/var/run/docker.sock
3838

3939
backend:
40-
image: 'clowder/clowder2-backend:2.0.0-beta.1'
40+
image: 'clowder/clowder2-backend:2.0.0-beta.2'
4141
restart: unless-stopped
4242
build:
4343
context: ./backend
@@ -77,7 +77,7 @@ services:
7777
- "traefik.http.routers.backend.priority=5"
7878

7979
frontend:
80-
image: "clowder/clowder2-frontend:2.0.0-beta.1"
80+
image: "clowder/clowder2-frontend:2.0.0-beta.2"
8181
restart: unless-stopped
8282
build:
8383
context: ./frontend

docs/source/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
author = "Clowder Devs"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "2.0.0-beta.1"
26-
25+
release = "2.0.0-beta.2"
2726

2827
# -- General configuration ---------------------------------------------------
2928

@@ -89,5 +88,4 @@
8988
# so a file named "default.css" will overwrite the builtin "default.css".
9089
html_static_path = ["_static"]
9190

92-
9391
# -- Markdown support --------------------------------------------------------

frontend/src/openapi/v2/core/OpenAPI.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type Config = {
2020

2121
export const OpenAPI: Config = {
2222
BASE: '',
23-
VERSION: '2.0.0-beta.1',
23+
VERSION: '2.0.0-beta.2',
2424
WITH_CREDENTIALS: false,
2525
CREDENTIALS: 'include',
2626
TOKEN: undefined,

openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"name": "Apache 2.0",
1212
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
1313
},
14-
"version": "2.0.0-beta.1"
14+
"version": "2.0.0-beta.2"
1515
},
1616
"paths": {
1717
"/api/v2/users": {
@@ -11273,7 +11273,7 @@
1127311273
"version": {
1127411274
"title": "Version",
1127511275
"type": "string",
11276-
"default": "2.0.0-beta.1"
11276+
"default": "2.0.0-beta.2"
1127711277
}
1127811278
}
1127911279
},

0 commit comments

Comments
 (0)