From 6f467b69f7bd31915490a81f3cb5fc49ae9806bf Mon Sep 17 00:00:00 2001 From: Corentin Mors Date: Thu, 13 Jun 2024 15:42:29 +0200 Subject: [PATCH] Bump version to v6.2424.2 --- package.json | 2 +- src/cliVersion.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8563021..e47e5b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dashlane/cli", - "version": "6.2424.1", + "version": "6.2424.2", "description": "Manage your Dashlane vault through a CLI tool", "type": "module", "main": "dist/index.cjs", diff --git a/src/cliVersion.ts b/src/cliVersion.ts index 514c9f4..f204090 100644 --- a/src/cliVersion.ts +++ b/src/cliVersion.ts @@ -1,6 +1,6 @@ import { CliVersion } from './types.js'; -export const CLI_VERSION: CliVersion = { major: 6, minor: 2424, patch: 1 }; +export const CLI_VERSION: CliVersion = { major: 6, minor: 2424, patch: 2 }; export const breakingChangesVersions: CliVersion[] = []; export const cliVersionToString = (version: CliVersion): string => {