From 0b67a82d90c597683b5ef705f2fd2652ad0e7790 Mon Sep 17 00:00:00 2001 From: Corentin Mors Date: Thu, 17 Aug 2023 13:23:48 +0200 Subject: [PATCH] Bump version to 1.13.0 --- package.json | 2 +- src/cliVersion.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5f424302..9294cf0c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@dashlane/cli", - "version": "1.12.0", + "version": "1.13.0", "description": "Manage your Dashlane vault through a CLI tool", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/cliVersion.ts b/src/cliVersion.ts index 90c7f34f..72a3d74b 100644 --- a/src/cliVersion.ts +++ b/src/cliVersion.ts @@ -1,6 +1,6 @@ import { CliVersion } from './types'; -export const CLI_VERSION: CliVersion = { major: 1, minor: 12, patch: 0 }; +export const CLI_VERSION: CliVersion = { major: 1, minor: 13, patch: 0 }; export const breakingChangesVersions: CliVersion[] = []; export const cliVersionToString = (version: CliVersion): string => {