diff --git a/CHANGELOG.md b/CHANGELOG.md index 837b234..27c90cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ See this project's [releases](/../../../releases). ## [Unreleased] +## [1.1.7] - 2024-02-23 + ## [1.1.6] - 2024-02-23 ## [1.1.5] - 2024-02-21 @@ -314,7 +316,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.6...HEAD +[Unreleased]: /../../compare/1.1.7...HEAD +[1.1.7]: /../../compare/1.1.6...1.1.7 [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 diff --git a/manifest.json b/manifest.json index 0540cf9..adba768 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "code-styler", "name": "Code Styler", - "version": "1.1.6", + "version": "1.1.7", "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 babb9a8..569184f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-styler", - "version": "1.1.6", + "version": "1.1.7", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-styler", - "version": "1.1.6", + "version": "1.1.7", "license": "MIT", "dependencies": { "@codemirror/language": "github:lishid/cm-language", diff --git a/package.json b/package.json index d447e33..2e85e2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-styler", - "version": "1.1.6", + "version": "1.1.7", "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 4772a02..f457531 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.6", + version: "1.1.7", }; export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings { @@ -702,6 +702,7 @@ const settingsUpdaters: RecordCodeStyler return settings; }), "1.1.5": settingsPreserve, + "1.1.6": settingsPreserve, }; // Constants diff --git a/versions.json b/versions.json index 6be7ab3..f90299e 100644 --- a/versions.json +++ b/versions.json @@ -17,5 +17,6 @@ "1.1.3": "0.15.0", "1.1.4": "0.15.0", "1.1.5": "0.15.0", - "1.1.6": "0.15.0" + "1.1.6": "0.15.0", + "1.1.7": "0.15.0" } \ No newline at end of file