Skip to content

Commit

Permalink
Ready release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurankv committed Nov 27, 2023
1 parent 0db6e69 commit e087e67
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
3 changes: 2 additions & 1 deletion src/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -647,6 +647,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
"1.1.0": settingsPreserve,
"1.1.1": settingsPreserve,
"1.1.2": settingsPreserve,
"1.1.3": settingsPreserve,
};

// Constants
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit e087e67

Please sign in to comment.