mirror of
https://github.com/bambuscontrol/obsidian-unicode-search.git
synced 2026-07-22 07:20:27 +00:00
Set version as 0.7.0-NEXT
This commit is contained in:
parent
ae6b66f6c5
commit
c74a6336e5
5 changed files with 12 additions and 10 deletions
|
|
@ -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",
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue