diff --git a/.env.example b/.env.example index c67f360..ea3bd5e 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -VERSION=0.1.13 +VERSION=0.1.14 # Nest run in docker, change host to database container name DB_HOST=localhost diff --git a/apps/init/src/utils/env.ts b/apps/init/src/utils/env.ts index f50166c..b9e9acf 100644 --- a/apps/init/src/utils/env.ts +++ b/apps/init/src/utils/env.ts @@ -2,7 +2,7 @@ import { z } from "zod"; const EnvironmentSchema = z.object({ // Version - VERSION: z.string().default("0.1.13"), + VERSION: z.string().default("0.1.14"), // Database DB_HOST: z.string().default("localhost"), diff --git a/apps/webapp/app/components/logs/log-text-collapse.tsx b/apps/webapp/app/components/logs/log-text-collapse.tsx index d1f74b4..5ad3eb0 100644 --- a/apps/webapp/app/components/logs/log-text-collapse.tsx +++ b/apps/webapp/app/components/logs/log-text-collapse.tsx @@ -17,7 +17,7 @@ import { AlertDialogTrigger, } from "../ui/alert-dialog"; import { Badge } from "../ui/badge"; -import { LogItem } from "~/hooks/use-logs"; +import { type LogItem } from "~/hooks/use-logs"; interface LogTextCollapseProps { text?: string; diff --git a/hosting/docker/core/.env b/hosting/docker/core/.env index 2c286f4..54bf003 100644 --- a/hosting/docker/core/.env +++ b/hosting/docker/core/.env @@ -1,4 +1,4 @@ -VERSION=0.1.13 +VERSION=0.1.14 # Nest run in docker, change host to database container name DB_HOST=localhost diff --git a/hosting/docker/trigger/.env b/hosting/docker/trigger/.env index 5a71043..9829e15 100644 --- a/hosting/docker/trigger/.env +++ b/hosting/docker/trigger/.env @@ -136,4 +136,4 @@ OBJECT_STORE_SECRET_ACCESS_KEY=very-safe-password # TRAEFIK_HTTPS_PUBLISH_IP=0.0.0.0 # TRAEFIK_DASHBOARD_PUBLISH_IP=127.0.0.1 -CORE_VERSION=0.1.13 \ No newline at end of file +CORE_VERSION=0.1.14 \ No newline at end of file diff --git a/package.json b/package.json index 8ffdb13..74119ae 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "core", "private": true, - "version": "0.1.13", + "version": "0.1.14", "workspaces": [ "apps/*", "packages/*"