Skip to content

Commit e087e67

Browse files
committed
Ready release 1.1.3
1 parent 0db6e69 commit e087e67

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

2527
- Fix reference parsing and added markdown links
@@ -286,7 +288,8 @@ See this project's [releases](/../../../releases).
286288
- Updated [README](README.md).
287289
- Removed `none` language from supported languages since it is used by obsidian for codeblocks without a language
288290

289-
[Unreleased]: /../../compare/1.1.2...HEAD
291+
[Unreleased]: /../../compare/1.1.3...HEAD
292+
[1.1.3]: /../../compare/1.1.2...1.1.3
290293
[1.1.2]: /../../compare/1.1.1...1.1.2
291294
[1.1.1]: /../../compare/1.1.0...1.1.1
292295
[1.1.0]: /../../compare/1.1.0...1.1.0

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

596596
export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
@@ -647,6 +647,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
647647
"1.1.0": settingsPreserve,
648648
"1.1.1": settingsPreserve,
649649
"1.1.2": settingsPreserve,
650+
"1.1.3": settingsPreserve,
650651
};
651652

652653
// Constants

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@
1313
"1.0.11": "0.15.0",
1414
"1.1.0": "0.15.0",
1515
"1.1.1": "0.15.0",
16-
"1.1.2": "0.15.0"
16+
"1.1.2": "0.15.0",
17+
"1.1.3": "0.15.0"
1718
}

0 commit comments

Comments
 (0)