diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index 34cd37e0..4ac44f16 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.12.7](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.6...1.12.7) + +- fix: parsing code blocks & custom separators [`#1081`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1081) +- chore: remove e2e testing [`#1083`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1083) +- update french translation [`#1082`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1082) +- French translation [`#1080`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1080) +- chore: update dependencies, linting, & tests [`#1056`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1056) +- Added options to show/hide (1) ribbon icon, (2) status bar, (3) file menu options [`#1066`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1066) +- Translate to Turkish [`#1078`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1078) +- fix: parsing code blocks & custom separators (#1081) [`#1072`](https://github.com/st3v3nmw/obsidian-spaced-repetition/issues/1072) [`#1077`](https://github.com/st3v3nmw/obsidian-spaced-repetition/issues/1077) +- chore: update dependencies, linting, & tests (#1056) [`#548`](https://github.com/st3v3nmw/obsidian-spaced-repetition/issues/548) [`#1000`](https://github.com/st3v3nmw/obsidian-spaced-repetition/issues/1000) + #### [1.12.6](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.5...1.12.6) > 15 September 2024 diff --git a/jest.config.js b/jest.config.js index d60199e5..35cdbb9f 100644 --- a/jest.config.js +++ b/jest.config.js @@ -39,8 +39,8 @@ module.exports = { coverageThreshold: { global: { // TODO: Bring coverage back up to 98%+ - statements: 92, - branches: 88, + statements: 93, + branches: 89, }, }, }; diff --git a/manifest.json b/manifest.json index c68eded6..5f2f64dc 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-spaced-repetition", "name": "Spaced Repetition", - "version": "1.12.6", + "version": "1.12.7", "minAppVersion": "1.2.8", "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", "author": "Stephen Mwangi", diff --git a/package.json b/package.json index d178f3d3..8c4eb159 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-spaced-repetition", - "version": "1.12.6", + "version": "1.12.7", "description": "Fight the forgetting curve by reviewing flashcards & entire notes.", "main": "main.js", "scripts": { diff --git a/tests/unit/parser.test.ts b/tests/unit/parser.test.ts index 21c5960f..f6f30b8f 100644 --- a/tests/unit/parser.test.ts +++ b/tests/unit/parser.test.ts @@ -233,7 +233,7 @@ test("Test parsing of multi line basic cards", () => { parse("Question\n?\nAnswer", { singleLineCardSeparator: "::", singleLineReversedCardSeparator: ":::", - multilineCardSeparator: "\n", + multilineCardSeparator: "", multilineReversedCardSeparator: "??", multilineCardEndMarker: "---", convertHighlightsToClozes: false,