From 9cd07e43b0846f757f2c895378764b3c2eec0362 Mon Sep 17 00:00:00 2001 From: Bambus Control Date: Wed, 20 Aug 2025 21:39:27 +0200 Subject: [PATCH] Version 2.1.0 --- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/chronotyper/core/version.ts | 16 ++++++++-------- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/manifest.json b/manifest.json index dc1d485..930b44b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "chronotyper", "name": "Chronotyper", - "version": "0.2.0-NEXT", + "version": "2.1.0", "minAppVersion": "1.8.7", "description": "Track how long you edit notes directly in the note properties", "author": "BambusControl", diff --git a/package-lock.json b/package-lock.json index c127a8f..949a114 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-chronotyper", - "version": "0.2.0-NEXT", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-chronotyper", - "version": "0.2.0-NEXT", + "version": "2.1.0", "license": "Apache-2.0", "devDependencies": { "@types/node": "^18", diff --git a/package.json b/package.json index 05f4a73..646d0b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-chronotyper", - "version": "0.2.0-NEXT", + "version": "2.1.0", "description": "Obsidian plugin for tracking note edit time.", "main": "main.js", "scripts": { diff --git a/src/chronotyper/core/version.ts b/src/chronotyper/core/version.ts index 45f264e..35bf52f 100644 --- a/src/chronotyper/core/version.ts +++ b/src/chronotyper/core/version.ts @@ -6,12 +6,12 @@ */ export type PluginVersion = "0.2.0" - | "0.2.0-NEXT" + | "2.1.0" // Update every release only if plugin version changed ; -export type CurrentPluginVersion = "0.2.0-NEXT" & PluginVersion; -export const CURRENT_PLUGIN_VERSION: CurrentPluginVersion = "0.2.0-NEXT"; +export type CurrentPluginVersion = "2.1.0" & PluginVersion; +export const CURRENT_PLUGIN_VERSION: CurrentPluginVersion = "2.1.0"; /** * Version of the save data schema. @@ -23,10 +23,10 @@ export const CURRENT_PLUGIN_VERSION: CurrentPluginVersion = "0.2.0-NEXT"; * @see {@link PluginVersion} */ export type SaveDataVersion = PluginVersion & - ( "0.2.0" - | "0.2.0-NEXT" - // Update only if save data schema changed + ("0.2.0" + | "2.1.0" + // Update only if save data schema changed ); -export type CurrentSaveDataVersion = "0.2.0-NEXT" & SaveDataVersion; -export const CURRENT_DATA_VERSION: CurrentPluginVersion = "0.2.0-NEXT"; +export type CurrentSaveDataVersion = "2.1.0" & SaveDataVersion; +export const CURRENT_DATA_VERSION: CurrentPluginVersion = "2.1.0";