Bump version to 0.13.0 (#665)

This commit is contained in:
Leendert de Borst
2025-03-08 01:23:32 +01:00
parent 7f186f1345
commit f28f1f07b8
5 changed files with 14 additions and 14 deletions

View File

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

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

View File

@@ -7,7 +7,7 @@ export default defineConfig({
manifest: {
name: "AliasVault",
description: "AliasVault Browser AutoFill Extension. Keeping your personal information private.",
version: "0.12.3",
version: "0.13.0",
content_security_policy: {
extension_pages: "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},

View File

@@ -17,10 +17,10 @@ Follow the steps in the checklist below to prepare a new release.
- [ ] Update README.md install.sh download link to point to the new release version
## Versioning browser extension
- [ ] Update ./chrome/manifest.json with the new version for the extension. This will be shown in the Chrome Web Store. This version should be equal to the git release tag.
- [ ] Update ./chrome/src/shared/AppInfo.ts with the new version for the extension. This version should be equal to the git release tag.
- [ ] Update ./chrome/src/shared/AppInfo.ts with the minimum supported server version (in case of required API breaking changes).
- [ ] Update ./chrome/src/shared/AppInfo.ts with the minimum supported client vault version (in case of required client vault model changes).
- [ ] Update ./browser-extension/wxt.config.ts with the new version for the extension. This will be shown in the browser extension web stores. This version should be equal to the git release tag.
- [ ] Update ./browser-extension/src/utils/AppInfo.ts with the new version for the extension. This version should be equal to the git release tag.
- [ ] Update ./browser-extension/src/utils/AppInfo.ts with the minimum supported server version (in case of required API breaking changes).
- [ ] Update ./browser-extension/src/shared/AppInfo.ts with the minimum supported client vault version (in case of required client vault model changes).
## Docker Images
If docker containers have been added or removed:
@@ -48,11 +48,11 @@ The creation of the new release tag will also trigger the GitHub Actions workflo
3. Publish the release.
## Publish new browser extension version
The GitHub Actions workflow `Publish Browser Extension` will build the browser extension(s) and publish the archive to the GitHub Actions Artifacts page.
The GitHub Actions workflow `Browser Extension Build` will build the browser extension(s) and publish the archive to the GitHub Actions Artifacts page and also upload the archives to the release.
> Note: this step is only required if the browser extension has been updated.
1. Download the browser extension archive from the GitHub Actions Artifacts page.
2. Upload the archive to the Chrome Web Store.
3. Upload the archive (normal + sources) to the Firefox Add-ons page.
4. Upload the archive to the Microsoft Edge Add-ons page.
1. Download the browser extension archives from the newly published release. Note: it can take a few minutes for the artifacts to be available after the release has been published.
2. Upload the Chrome archive to the Chrome Web Store.
3. Upload the Firefox archive (normal + sources) to the Firefox Add-ons page.
4. Upload the Edge archive to the Microsoft Edge Add-ons page.

View File

@@ -25,12 +25,12 @@ public static class AppInfo
/// <summary>
/// Gets the minor version number.
/// </summary>
public const int VersionMinor = 12;
public const int VersionMinor = 13;
/// <summary>
/// Gets the patch version number.
/// </summary>
public const int VersionPatch = 3;
public const int VersionPatch = 0;
/// <summary>
/// Gets the minimum supported AliasVault client version. Normally the minimum client version is the same