Skip to content

Commit 5944b16

Browse files
committed
Release v1.3.0
1 parent 90dd685 commit 5944b16

File tree

6 files changed

+10
-32
lines changed

6 files changed

+10
-32
lines changed

backend/src/configs/version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
api:
2-
version: 1.2.2
2+
version: 1.3.0

docker/.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ COMPOSE_PROJECT_NAME=demo
1111
# you can remove profiles from right to left
1212
COMPOSE_PROFILES=weaviate,background,backend,frontend
1313
# Docker tag to use for pulling the backend and celery containers
14-
DATS_BACKEND_DOCKER_VERSION=1.2.2
14+
DATS_BACKEND_DOCKER_VERSION=1.3.0
1515
# Docker tag to use for pulling the ray container
16-
DATS_RAY_DOCKER_VERSION=1.2.2-flo
16+
DATS_RAY_DOCKER_VERSION=1.3.0
1717
# Docker tag to use for pulling the frontend
18-
DATS_FRONTEND_DOCKER_VERSION=1.2.2
18+
DATS_FRONTEND_DOCKER_VERSION=1.3.0
1919
# Which user and group to use for running processes
2020
# inside containers.
2121
# Set this to the user and group you're using

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "1.2.2",
3+
"version": "1.3.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type OpenAPIConfig = {
2121

2222
export const OpenAPI: OpenAPIConfig = {
2323
BASE: "",
24-
VERSION: "1.2.2",
24+
VERSION: "1.3.0",
2525
WITH_CREDENTIALS: false,
2626
CREDENTIALS: "include",
2727
TOKEN: undefined,

frontend/src/openapi.json

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"openapi": "3.1.0",
3-
"info": { "title": "Discourse Analysis Tool Suite API", "version": "1.2.2" },
3+
"info": { "title": "Discourse Analysis Tool Suite API", "version": "1.3.0" },
44
"paths": {
55
"/heartbeat": {
66
"get": {
@@ -1142,29 +1142,7 @@
11421142
"security": [{ "OAuth2PasswordBearer": [] }],
11431143
"parameters": [
11441144
{ "name": "sdoc_id", "in": "path", "required": true, "schema": { "type": "integer", "title": "Sdoc Id" } },
1145-
{ "name": "user_id", "in": "path", "required": true, "schema": { "type": "integer", "title": "User Id" } },
1146-
{
1147-
"name": "skip",
1148-
"in": "query",
1149-
"required": false,
1150-
"schema": {
1151-
"anyOf": [{ "type": "integer", "maximum": 10000000, "minimum": 0 }, { "type": "null" }],
1152-
"title": "Skip",
1153-
"description": "The number of elements to skip (offset)"
1154-
},
1155-
"description": "The number of elements to skip (offset)"
1156-
},
1157-
{
1158-
"name": "limit",
1159-
"in": "query",
1160-
"required": false,
1161-
"schema": {
1162-
"anyOf": [{ "type": "integer", "maximum": 1000, "minimum": 1 }, { "type": "null" }],
1163-
"title": "Limit",
1164-
"description": "The maximum number of returned elements"
1165-
},
1166-
"description": "The maximum number of returned elements"
1167-
}
1145+
{ "name": "user_id", "in": "path", "required": true, "schema": { "type": "integer", "title": "User Id" } }
11681146
],
11691147
"responses": {
11701148
"200": {

0 commit comments

Comments
 (0)