diff --git a/CHANGELOG.md b/CHANGELOG.md index 9de9049..7a29150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ See this project's [releases](/../../../releases). ## [Unreleased] +## [1.1.3] - 2023-11-27 + ### Fixed - Fix reference parsing and added markdown links @@ -286,7 +288,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.2...HEAD +[Unreleased]: /../../compare/1.1.3...HEAD +[1.1.3]: /../../compare/1.1.2...1.1.3 [1.1.2]: /../../compare/1.1.1...1.1.2 [1.1.1]: /../../compare/1.1.0...1.1.1 [1.1.0]: /../../compare/1.1.0...1.1.0 diff --git a/manifest.json b/manifest.json index d73e5ae..fd5bc06 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "code-styler", "name": "Code Styler", - "version": "1.1.2", + "version": "1.1.3", "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 6606780..3a34753 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "code-styler", - "version": "1.1.2", + "version": "1.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "code-styler", - "version": "1.1.2", + "version": "1.1.3", "license": "MIT", "dependencies": { "@codemirror/language": "github:lishid/cm-language", diff --git a/package.json b/package.json index 084899f..5b6e82d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-styler", - "version": "1.1.2", + "version": "1.1.3", "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 7bbf30c..2f7db22 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.1.2", + version: "1.1.3", }; export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings { @@ -647,6 +647,7 @@ const settingsUpdaters: RecordCodeStyler "1.1.0": settingsPreserve, "1.1.1": settingsPreserve, "1.1.2": settingsPreserve, + "1.1.3": settingsPreserve, }; // Constants diff --git a/versions.json b/versions.json index 7369978..c529e5a 100644 --- a/versions.json +++ b/versions.json @@ -13,5 +13,6 @@ "1.0.11": "0.15.0", "1.1.0": "0.15.0", "1.1.1": "0.15.0", - "1.1.2": "0.15.0" + "1.1.2": "0.15.0", + "1.1.3": "0.15.0" } \ No newline at end of file