Skip to content

Commit

Permalink
Merge pull request #558 from lanedirt/557-prepare-0111-release
Browse files Browse the repository at this point in the history
Bump version to 0.11.1
  • Loading branch information
lanedirt authored Jan 22, 2025
2 parents 2ea2526 + 50b3872 commit 581d1da
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/misc/release/create-new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/Shared/AliasVault.Shared.Core/AppInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static class AppInfo
/// <summary>
/// Gets the patch version number.
/// </summary>
public const int VersionPatch = 0;
public const int VersionPatch = 1;

/// <summary>
/// Gets the build number, typically used in CI/CD pipelines.
Expand Down

0 comments on commit 581d1da

Please sign in to comment.