diff --git a/manifest.json b/manifest.json index d13390f..4d7910d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "unicode-search", "name": "Unicode Search", - "version": "0.7.0", + "version": "0.7.0-NEXT", "minAppVersion": "1.7.2", "description": "Search and insert Unicode characters into your editor", "author": "BambusControl", diff --git a/package-lock.json b/package-lock.json index 7576a4b..c9ebe91 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-unicode-search", - "version": "0.7.0", + "version": "0.7.0-NEXT", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-unicode-search", - "version": "0.7.0", + "version": "0.7.0-NEXT", "license": "Apache-2.0", "dependencies": { "papaparse": "^5.5.1" diff --git a/package.json b/package.json index 0aa783e..b685c12 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "obsidian-unicode-search", - "version": "0.7.0", + "version": "0.7.0-NEXT", "description": "Obsidian plugin for searching Unicode characters.", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs", "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", - "export-schema": "typescript-json-schema --required --strictNullChecks --validationKeywords --ignoreErrors --refs --id https://raw.githubusercontent.com/BambusControl/obsidian-unicode-search/0.7.0/resources/save-data-schema.json --out ./resources/save-data-schema.json tsconfig.json SaveData", + "export-schema": "typescript-json-schema --required --strictNullChecks --validationKeywords --ignoreErrors --refs --id https://raw.githubusercontent.com/BambusControl/obsidian-unicode-search/0.7.0-NEXT/resources/save-data-schema.json --out ./resources/save-data-schema.json tsconfig.json SaveData", "test": "jest" }, "keywords": [ diff --git a/sonar-project.properties b/sonar-project.properties index c1b33ea..91a6394 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=BambusControl_obsidian-unicode-search sonar.organization=bambuscontrol # This is the name and version displayed in the SonarCloud UI. -sonar.projectVersion=0.7.0 +sonar.projectVersion=0.7.0-NEXT # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. diff --git a/src/libraries/types/savedata/version.ts b/src/libraries/types/savedata/version.ts index 43ed43d..19e9c32 100644 --- a/src/libraries/types/savedata/version.ts +++ b/src/libraries/types/savedata/version.ts @@ -16,11 +16,12 @@ export type PluginVersion | "0.6.0" | "0.6.1" | "0.7.0" + | "0.7.0-NEXT" // Update every release only if plugin version changed ; -export type CurrentPluginVersion = "0.7.0" & PluginVersion; -export const CURRENT_PLUGIN_VERSION: CurrentPluginVersion = "0.7.0"; +export type CurrentPluginVersion = "0.7.0-NEXT" & PluginVersion; +export const CURRENT_PLUGIN_VERSION: CurrentPluginVersion = "0.7.0-NEXT"; /** * Version of the save data schema. @@ -36,8 +37,9 @@ export type SaveDataVersion = PluginVersion & | "0.5.0" | "0.6.0" | "0.7.0" + | "0.7.0-NEXT" // Update only if save data schema changed ); -export type CurrentSaveDataVersion = "0.7.0" & SaveDataVersion; -export const CURRENT_DATA_VERSION: CurrentPluginVersion = "0.7.0"; +export type CurrentSaveDataVersion = "0.7.0-NEXT" & SaveDataVersion; +export const CURRENT_DATA_VERSION: CurrentPluginVersion = "0.7.0-NEXT";