From a46bc9699f59320ba7ace778a45b0dd02e1ffede Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Wed, 14 May 2025 10:06:40 +0200 Subject: [PATCH] Bump version to 0.17.0 (#837) --- apps/browser-extension/src/utils/AppInfo.ts | 2 +- apps/browser-extension/wxt.config.ts | 2 +- apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs | 4 ++-- docs/misc/release/create-new-release.md | 2 +- install.sh | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/browser-extension/src/utils/AppInfo.ts b/apps/browser-extension/src/utils/AppInfo.ts index 48d244b38..89781b750 100644 --- a/apps/browser-extension/src/utils/AppInfo.ts +++ b/apps/browser-extension/src/utils/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.16.2'; + public static readonly VERSION = '0.17.0'; /** * The minimum supported AliasVault server (API) version. If the server version is below this, the diff --git a/apps/browser-extension/wxt.config.ts b/apps/browser-extension/wxt.config.ts index 06b4b5e88..bfb862184 100644 --- a/apps/browser-extension/wxt.config.ts +++ b/apps/browser-extension/wxt.config.ts @@ -6,7 +6,7 @@ export default defineConfig({ manifest: { name: "AliasVault", description: "AliasVault Browser AutoFill Extension. Keeping your personal information private.", - version: "0.16.2", + version: "0.17.0", content_security_policy: { extension_pages: "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" }, diff --git a/apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs b/apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs index e257a1cff..44724fcf5 100644 --- a/apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs +++ b/apps/server/Shared/AliasVault.Shared.Core/AppInfo.cs @@ -25,12 +25,12 @@ public static class AppInfo /// /// Gets the minor version number. /// - public const int VersionMinor = 16; + public const int VersionMinor = 17; /// /// Gets the patch version number. /// - public const int VersionPatch = 2; + public const int VersionPatch = 0; /// /// Gets the minimum supported AliasVault client version. Normally the minimum client version is the same diff --git a/docs/misc/release/create-new-release.md b/docs/misc/release/create-new-release.md index f7a8c74f0..f8d6c08d5 100644 --- a/docs/misc/release/create-new-release.md +++ b/docs/misc/release/create-new-release.md @@ -20,7 +20,7 @@ Follow the steps in the checklist below to prepare a new release. - [ ] Update `./apps/browser-extension/safari-xcode/AliasVault/AliasVault.xcodeproj/project.pbxproj` and set the version in `MARKETING_VERSION` and increase the build number in `CURRENT_PROJECT_VERSION`. This is the version that will be shown in the Safari Browser Extension App Store. - [ ] Update `./apps/browser-extension/src/utils/AppInfo.ts` with the new version for the extension. This version should be equal to the git release tag. - [ ] Update `./apps/browser-extension/src/utils/AppInfo.ts` with the minimum supported server version (in case of required API breaking changes). -- [ ] Update `./apps/browser-extension/src/shared/AppInfo.ts` with the minimum supported client vault version (in case of required client vault model changes). +- [ ] Update `./apps/browser-extension/src/utils/AppInfo.ts` with the minimum supported client vault version (in case of required client vault model changes). ## Versioning mobile apps - [ ] Update `./apps/mobile-app/utils/AppInfo.ts` with the new version for the extension. This version should be equal to the git release tag. diff --git a/install.sh b/install.sh index 426859533..e5abcb07d 100755 --- a/install.sh +++ b/install.sh @@ -1,5 +1,5 @@ #!/bin/bash -# @version 0.15.1 +# @version 0.17.0 # Repository information used for downloading files and images from GitHub REPO_OWNER="lanedirt"