Skip to content

Commit

Permalink
Ready release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurankv committed Nov 27, 2023
1 parent 832d5c2 commit 72e1e3b
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.1] - 2023-11-27

### Fixed

- Fixed CSS issues
Expand Down Expand Up @@ -270,7 +272,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.0...HEAD
[Unreleased]: /../../compare/1.1.1...HEAD
[1.1.1]: /../../compare/1.1.0...1.1.1
[1.1.0]: /../../compare/1.1.0...1.1.0
[1.0.11]: /../../compare/1.0.10...1.0.11
[1.0.10]: /../../compare/1.0.9...1.0.10
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.0",
"version": "1.1.1",
"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.0",
"version": "1.1.1",
"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.0",
version: "1.1.1",
};

export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
Expand Down Expand Up @@ -645,6 +645,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
}),
"1.0.11": settingsPreserve,
"1.1.0": settingsPreserve,
"1.1.1": settingsPreserve,
};

// Constants
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
"1.0.9": "0.15.0",
"1.0.10": "0.15.0",
"1.0.11": "0.15.0",
"1.1.0": "0.15.0"
"1.1.0": "0.15.0",
"1.1.1": "0.15.0"
}

0 comments on commit 72e1e3b

Please sign in to comment.