diff --git a/CHANGELOG.md b/CHANGELOG.md index 6465e16..837b234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ See this project's [releases](/../../../releases). ## [Unreleased] +## [1.1.6] - 2024-02-23 + ## [1.1.5] - 2024-02-21 ### Added @@ -312,7 +314,8 @@ See this project's [releases](/../../../releases). - Updated [README](README.md). - Removed `none` language from supported languages since it is used by obsidian for codeblocks without a language -[Unreleased]: /../../compare/1.1.5...HEAD +[Unreleased]: /../../compare/1.1.6...HEAD +[1.1.6]: /../../compare/1.1.5...1.1.6 [1.1.5]: /../../compare/1.1.5...1.1.5 [1.1.4]: /../../compare/1.1.3...1.1.4 [1.1.3]: /../../compare/1.1.2...1.1.3 diff --git a/manifest.json b/manifest.json index e8ccc15..0540cf9 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "code-styler", "name": "Code Styler", - "version": "1.1.5", + "version": "1.1.6", "minAppVersion": "0.15.0", "description": "Style and customize codeblocks and inline code in both editing mode and reading mode.", "author": "Mayuran Visakan", diff --git a/package-lock.json b/package-lock.json index 135ecdc..2f0db36 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-styler", - "version": "1.1.5", + "version": "1.1.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-styler", - "version": "1.1.5", + "version": "1.1.6", "license": "MIT", "dependencies": { "@codemirror/language": "github:lishid/cm-language", diff --git a/package.json b/package.json index cf280c5..d447e33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-styler", - "version": "1.1.5", + "version": "1.1.6", "description": "This is a plugin for Obsidian (https://obsidian.md) which lets you style codeblocks and inline code in both editing mode and reading mode.", "main": "main.js", "scripts": { diff --git a/src/Settings.ts b/src/Settings.ts index 1a7332d..dc0de21 100644 --- a/src/Settings.ts +++ b/src/Settings.ts @@ -634,7 +634,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = { externalReferenceUpdateOnLoad: false, processedCodeblocksWhitelist: WHITELIST_CODEBLOCKS, redirectLanguages: {}, - version: "1.1.5", + version: "1.1.6", }; export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings { @@ -701,6 +701,7 @@ const settingsUpdaters: RecordCodeStyler settings.externalReferenceUpdateOnLoad = false; return settings; }), + "1.1.6": settingsPreserve, }; // Constants diff --git a/versions.json b/versions.json index ddc579d..6be7ab3 100644 --- a/versions.json +++ b/versions.json @@ -16,5 +16,6 @@ "1.1.2": "0.15.0", "1.1.3": "0.15.0", "1.1.4": "0.15.0", - "1.1.5": "0.15.0" + "1.1.5": "0.15.0", + "1.1.6": "0.15.0" } \ No newline at end of file