Skip to content

Commit 7d6314d

Browse files
committed
Ready release 1.0.11
1 parent 2bf1e9a commit 7d6314d

6 files changed

+13
-8
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ See this project's [releases](/../../../releases).
2020

2121
## [Unreleased]
2222

23+
## [1.0.11] - 2023-09-02
24+
2325
### Added
2426

2527
- Setting to disable inline code styling
@@ -242,7 +244,8 @@ See this project's [releases](/../../../releases).
242244
- Updated [README](README.md).
243245
- Removed `none` language from supported languages since it is used by obsidian for codeblocks without a language
244246

245-
[Unreleased]: /../../compare/1.0.10...HEAD
247+
[Unreleased]: /../../compare/1.0.11...HEAD
248+
[1.0.11]: /../../compare/1.0.10...1.0.11
246249
[1.0.10]: /../../compare/1.0.9...1.0.10
247250
[1.0.9]: /../../compare/1.0.8...1.0.9
248251
[1.0.8]: /../../compare/1.0.7...1.0.8

manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"id": "code-styler",
33
"name": "Code Styler",
4-
"version": "1.0.10",
4+
"version": "1.0.11",
55
"minAppVersion": "0.15.0",
66
"description": "Style and customize codeblocks and inline code in both editing mode and reading mode.",
77
"author": "Mayuran Visakan",
88
"authorUrl": "https://github.com/mayurankv",
99
"fundingUrl": "https://www.buymeacoffee.com/mayurankv2",
1010
"isDesktopOnly": false
11-
}
11+
}

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-styler",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"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.",
55
"main": "main.js",
66
"scripts": {

src/Settings.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = {
590590
excludedLanguages: EXCLUDED_LANGUAGES,
591591
processedCodeblocksWhitelist: WHITELIST_CODEBLOCKS,
592592
redirectLanguages: {},
593-
version: "1.0.10",
593+
version: "1.0.11",
594594
};
595595

596596
export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
@@ -643,6 +643,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
643643
delete settings.specialLanguages;
644644
return settings;
645645
}),
646+
"1.0.11": settingsPreserve,
646647
};
647648

648649
// Constants

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
"1.0.7": "0.15.0",
1010
"1.0.8": "0.15.0",
1111
"1.0.9": "0.15.0",
12-
"1.0.10": "0.15.0"
12+
"1.0.10": "0.15.0",
13+
"1.0.11": "0.15.0"
1314
}

0 commit comments

Comments
 (0)