From 7fdd25c7ee73fb0356c9bf500b59e85861382e31 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Mon, 3 Mar 2025 22:58:36 +0000 Subject: [PATCH] Update version to 1.1.0 in all files --- Dockerfile | 5 +++++ frontend/src/utils/version.js | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 624e7eb10..f2005a182 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,6 +21,11 @@ RUN cd frontend && npm run build # Production stage FROM node:18-slim +# Add version labels +LABEL version="1.1.0" +LABEL description="ProxMox Pulse - A lightweight monitoring application for ProxMox" +LABEL maintainer="Richard Courtman" + # Create a non-root user RUN apt-get update && apt-get install -y --no-install-recommends dumb-init \ && apt-get clean \ diff --git a/frontend/src/utils/version.js b/frontend/src/utils/version.js index 74548892e..087f4d34e 100644 --- a/frontend/src/utils/version.js +++ b/frontend/src/utils/version.js @@ -1,4 +1,4 @@ // This file contains the version information for the application // It is automatically updated when a new release is created -export const VERSION = '1.0.15'; // Updated manually +export const VERSION = '1.1.0'; // Updated manually