Skip to content

Commit

Permalink
Ready release 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurankv committed Aug 30, 2023
1 parent c082c2b commit 729da30
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 @@ -19,6 +19,8 @@ See this project's [releases](/../../../releases).

## [Unreleased]

## [1.0.10] - 2023-08-30

### Changed

- Changed how line numbers are hidden/shown
Expand Down Expand Up @@ -217,7 +219,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.0.9...HEAD
[Unreleased]: /../../compare/1.0.10...HEAD
[1.0.10]: /../../compare/1.0.9...1.0.10
[1.0.9]: /../../compare/1.0.8...1.0.9
[1.0.8]: /../../compare/1.0.7...1.0.8
[1.0.7]: /../../compare/1.0.6...1.0.7
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.0.9",
"version": "1.0.10",
"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.0.9",
"version": "1.0.10",
"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 @@ -311,7 +311,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = {
excludedLanguages: "ad-*",
excludedCodeblocks: "dataview, dataviewjs, math",
redirectLanguages: {},
version: "1.0.9",
version: "1.0.10",
};

export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
Expand Down Expand Up @@ -360,6 +360,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
delete settings.specialLanguages;
return settings;
}),
"1.0.10": settingsPreserve,
};

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

0 comments on commit 729da30

Please sign in to comment.