Skip to content

Commit 13c4391

Browse files
committed
Ready release 1.1.6
1 parent c2242f1 commit 13c4391

6 files changed

+12
-7
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.1.6] - 2024-02-23
24+
2325
## [1.1.5] - 2024-02-21
2426

2527
### Added
@@ -312,7 +314,8 @@ See this project's [releases](/../../../releases).
312314
- Updated [README](README.md).
313315
- Removed `none` language from supported languages since it is used by obsidian for codeblocks without a language
314316

315-
[Unreleased]: /../../compare/1.1.5...HEAD
317+
[Unreleased]: /../../compare/1.1.6...HEAD
318+
[1.1.6]: /../../compare/1.1.5...1.1.6
316319
[1.1.5]: /../../compare/1.1.5...1.1.5
317320
[1.1.4]: /../../compare/1.1.3...1.1.4
318321
[1.1.3]: /../../compare/1.1.2...1.1.3

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "code-styler",
33
"name": "Code Styler",
4-
"version": "1.1.5",
4+
"version": "1.1.6",
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",

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.1.5",
3+
"version": "1.1.6",
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
@@ -634,7 +634,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = {
634634
externalReferenceUpdateOnLoad: false,
635635
processedCodeblocksWhitelist: WHITELIST_CODEBLOCKS,
636636
redirectLanguages: {},
637-
version: "1.1.5",
637+
version: "1.1.6",
638638
};
639639

640640
export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
@@ -701,6 +701,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
701701
settings.externalReferenceUpdateOnLoad = false;
702702
return settings;
703703
}),
704+
"1.1.6": settingsPreserve,
704705
};
705706

706707
// Constants

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616
"1.1.2": "0.15.0",
1717
"1.1.3": "0.15.0",
1818
"1.1.4": "0.15.0",
19-
"1.1.5": "0.15.0"
19+
"1.1.5": "0.15.0",
20+
"1.1.6": "0.15.0"
2021
}

0 commit comments

Comments
 (0)