Bump version to 0.12.2 (#616)

This commit is contained in:
Leendert de Borst
2025-02-25 13:40:39 +01:00
committed by Leendert de Borst
parent 34995fe801
commit 5baede08a7
5 changed files with 5 additions and 5 deletions

View File

@@ -58,7 +58,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.1/install.sh
curl -o install.sh https://raw.githubusercontent.com/lanedirt/AliasVault/0.12.2/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

View File

@@ -1,7 +1,7 @@
{
"name": "AliasVault",
"description": "AliasVault Browser AutoFill Extension. Keeping your personal information private.",
"version": "0.12.1",
"version": "0.12.2",
"manifest_version": 3,
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"

View File

@@ -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.1';
public static readonly VERSION = '0.12.2';
/**
* The minimum supported AliasVault server (API) version. If the server version is below this, the

View File

@@ -1,5 +1,5 @@
#!/bin/bash
# @version 0.12.0
# @version 0.12.2
# Repository information used for downloading files and images from GitHub
REPO_OWNER="lanedirt"

View File

@@ -30,7 +30,7 @@ public static class AppInfo
/// <summary>
/// Gets the patch version number.
/// </summary>
public const int VersionPatch = 1;
public const int VersionPatch = 2;
/// <summary>
/// Gets a dictionary of minimum supported client versions that the WebApi supports.