From 206254574a74a1ffead2d39cf3eae54b61bbc43e Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Fri, 28 Feb 2025 19:01:12 +0100 Subject: [PATCH] Bump version to 0.12.3 (#626) --- README.md | 3 +-- browser-extensions/chrome/manifest.json | 2 +- browser-extensions/chrome/src/shared/AppInfo.ts | 2 +- src/Shared/AliasVault.Shared.Core/AppInfo.cs | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6906cec7a..ccfab37bc 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ This method uses pre-built Docker images and works on minimal hardware specifica ```bash # Download install script from latest stable release -curl -o install.sh https://raw.githubusercontent.com/lanedirt/AliasVault/0.12.2/install.sh +curl -o install.sh https://raw.githubusercontent.com/lanedirt/AliasVault/0.12.3/install.sh # Make install script executable and run it. This will create the .env file, pull the Docker images, and start the AliasVault containers. chmod +x install.sh @@ -129,4 +129,3 @@ AliasVault is built with a modern, secure, and scalable technology stack, ensuri - **SonarCloud** – Continuous code quality monitoring. AliasVault prioritizes security, performance, and user privacy with a technology stack trusted by the industry. - diff --git a/browser-extensions/chrome/manifest.json b/browser-extensions/chrome/manifest.json index e61c8ae8e..a17969467 100644 --- a/browser-extensions/chrome/manifest.json +++ b/browser-extensions/chrome/manifest.json @@ -1,7 +1,7 @@ { "name": "AliasVault", "description": "AliasVault Browser AutoFill Extension. Keeping your personal information private.", - "version": "0.12.2", + "version": "0.12.3", "manifest_version": 3, "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" diff --git a/browser-extensions/chrome/src/shared/AppInfo.ts b/browser-extensions/chrome/src/shared/AppInfo.ts index 848fa584c..682142e7a 100644 --- a/browser-extensions/chrome/src/shared/AppInfo.ts +++ b/browser-extensions/chrome/src/shared/AppInfo.ts @@ -6,7 +6,7 @@ export class AppInfo { /** * The current extension version. This should be updated with each release of the extension. */ - public static readonly VERSION = '0.12.2'; + public static readonly VERSION = '0.12.3'; /** * The minimum supported AliasVault server (API) version. If the server version is below this, the diff --git a/src/Shared/AliasVault.Shared.Core/AppInfo.cs b/src/Shared/AliasVault.Shared.Core/AppInfo.cs index fa5d619be..f2233fd5a 100644 --- a/src/Shared/AliasVault.Shared.Core/AppInfo.cs +++ b/src/Shared/AliasVault.Shared.Core/AppInfo.cs @@ -30,7 +30,7 @@ public static class AppInfo /// /// Gets the patch version number. /// - public const int VersionPatch = 2; + public const int VersionPatch = 3; /// /// Gets a dictionary of minimum supported client versions that the WebApi supports.