diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f9da72..71d378c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ See this project's [releases](/../../../releases). ## [Unreleased] +## [1.0.11] - 2023-09-02 + ### Added - Setting to disable inline code styling @@ -242,7 +244,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.0.10...HEAD +[Unreleased]: /../../compare/1.0.11...HEAD +[1.0.11]: /../../compare/1.0.10...1.0.11 [1.0.10]: /../../compare/1.0.9...1.0.10 [1.0.9]: /../../compare/1.0.8...1.0.9 [1.0.8]: /../../compare/1.0.7...1.0.8 diff --git a/manifest.json b/manifest.json index f582455..1969b48 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,11 @@ { "id": "code-styler", "name": "Code Styler", - "version": "1.0.10", + "version": "1.0.11", "minAppVersion": "0.15.0", "description": "Style and customize codeblocks and inline code in both editing mode and reading mode.", "author": "Mayuran Visakan", "authorUrl": "https://github.com/mayurankv", "fundingUrl": "https://www.buymeacoffee.com/mayurankv2", "isDesktopOnly": false -} +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index a229bcf..61d11b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-styler", - "version": "1.0.10", + "version": "1.0.11", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-styler", - "version": "1.0.10", + "version": "1.0.11", "license": "MIT", "dependencies": { "@codemirror/language": "github:lishid/cm-language", diff --git a/package.json b/package.json index 8d3f04a..5063fd5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-styler", - "version": "1.0.10", + "version": "1.0.11", "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 c16ed5d..7e0c34e 100644 --- a/src/Settings.ts +++ b/src/Settings.ts @@ -590,7 +590,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = { excludedLanguages: EXCLUDED_LANGUAGES, processedCodeblocksWhitelist: WHITELIST_CODEBLOCKS, redirectLanguages: {}, - version: "1.0.10", + version: "1.0.11", }; export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings { @@ -643,6 +643,7 @@ const settingsUpdaters: RecordCodeStyler delete settings.specialLanguages; return settings; }), + "1.0.11": settingsPreserve, }; // Constants diff --git a/versions.json b/versions.json index 28b17b5..8083719 100644 --- a/versions.json +++ b/versions.json @@ -9,5 +9,6 @@ "1.0.7": "0.15.0", "1.0.8": "0.15.0", "1.0.9": "0.15.0", - "1.0.10": "0.15.0" + "1.0.10": "0.15.0", + "1.0.11": "0.15.0" } \ No newline at end of file