From 50b3872ae06636af0e271d26d5e428e26cb27462 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Wed, 22 Jan 2025 12:17:29 +0100 Subject: [PATCH] Bump version to 0.11.1 (#557) --- README.md | 4 ++-- docs/misc/release/create-new-release.md | 1 + install.sh | 2 +- src/Shared/AliasVault.Shared.Core/AppInfo.cs | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7d9d4a87..04cfff04 100644 --- a/README.md +++ b/README.md @@ -57,8 +57,8 @@ This method uses pre-built Docker images and works on minimal hardware specifica - Docker installed ```bash -# Download install script -curl -o install.sh https://raw.githubusercontent.com/lanedirt/AliasVault/main/install.sh +# Download install script from latest stable release +curl -o install.sh https://raw.githubusercontent.com/lanedirt/AliasVault/0.11.1/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 diff --git a/docs/misc/release/create-new-release.md b/docs/misc/release/create-new-release.md index d07ccbe6..ebb9c817 100644 --- a/docs/misc/release/create-new-release.md +++ b/docs/misc/release/create-new-release.md @@ -13,6 +13,7 @@ Follow the steps in the checklist below to prepare a new release. ## Versioning - [ ] Update ./src/Shared/AliasVault.Shared.Core/AppInfo.cs and update major/minor/patch to the new version. This version will be shown in the client and admin app footer. - [ ] Update ./install.sh `@version` in header if the install script has changed. This allows the install script to self-update when running the `./install.sh update` command on default installations. +- [ ] Update README.md install.sh download link to point to the new release version ## Docker Images If docker containers have been added or removed: diff --git a/install.sh b/install.sh index 0042d9d2..d7481d4b 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,5 @@ #!/bin/bash -# @version 0.10.3 +# @version 0.11.1 # Repository information used for downloading files and images from GitHub REPO_OWNER="lanedirt" diff --git a/src/Shared/AliasVault.Shared.Core/AppInfo.cs b/src/Shared/AliasVault.Shared.Core/AppInfo.cs index 51f1deb8..fb649f7a 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 = 0; + public const int VersionPatch = 1; /// /// Gets the build number, typically used in CI/CD pipelines.