Skip to content

Commit 72e1e3b

Browse files
committed
Ready release 1.1.1
1 parent 832d5c2 commit 72e1e3b

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.1] - 2023-11-27
24+
2325
### Fixed
2426

2527
- Fixed CSS issues
@@ -270,7 +272,8 @@ See this project's [releases](/../../../releases).
270272
- Updated [README](README.md).
271273
- Removed `none` language from supported languages since it is used by obsidian for codeblocks without a language
272274

273-
[Unreleased]: /../../compare/1.1.0...HEAD
275+
[Unreleased]: /../../compare/1.1.1...HEAD
276+
[1.1.1]: /../../compare/1.1.0...1.1.1
274277
[1.1.0]: /../../compare/1.1.0...1.1.0
275278
[1.0.11]: /../../compare/1.0.10...1.0.11
276279
[1.0.10]: /../../compare/1.0.9...1.0.10

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.0",
4+
"version": "1.1.1",
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.0",
3+
"version": "1.1.1",
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.1.0",
593+
version: "1.1.1",
594594
};
595595

596596
export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
@@ -645,6 +645,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
645645
}),
646646
"1.0.11": settingsPreserve,
647647
"1.1.0": settingsPreserve,
648+
"1.1.1": settingsPreserve,
648649
};
649650

650651
// Constants

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"1.0.9": "0.15.0",
1212
"1.0.10": "0.15.0",
1313
"1.0.11": "0.15.0",
14-
"1.1.0": "0.15.0"
14+
"1.1.0": "0.15.0",
15+
"1.1.1": "0.15.0"
1516
}

0 commit comments

Comments
 (0)