Skip to content

Commit 2942f9a

Browse files
authored
Bump version to v1.12.7 (#1084)
1 parent 657e37d commit 2942f9a

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

docs/docs/changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.12.7](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.6...1.12.7)
8+
9+
- fix: parsing code blocks & custom separators [`#1081`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1081)
10+
- chore: remove e2e testing [`#1083`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1083)
11+
- update french translation [`#1082`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1082)
12+
- French translation [`#1080`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1080)
13+
- chore: update dependencies, linting, & tests [`#1056`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1056)
14+
- 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)
15+
- Translate to Turkish [`#1078`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1078)
16+
- 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)
17+
- 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)
18+
719
#### [1.12.6](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.5...1.12.6)
820

921
> 15 September 2024

jest.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ module.exports = {
3939
coverageThreshold: {
4040
global: {
4141
// TODO: Bring coverage back up to 98%+
42-
statements: 92,
43-
branches: 88,
42+
statements: 93,
43+
branches: 89,
4444
},
4545
},
4646
};

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-spaced-repetition",
33
"name": "Spaced Repetition",
4-
"version": "1.12.6",
4+
"version": "1.12.7",
55
"minAppVersion": "1.2.8",
66
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
77
"author": "Stephen Mwangi",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-spaced-repetition",
3-
"version": "1.12.6",
3+
"version": "1.12.7",
44
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
55
"main": "main.js",
66
"scripts": {

tests/unit/parser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ test("Test parsing of multi line basic cards", () => {
233233
parse("Question\n?\nAnswer", {
234234
singleLineCardSeparator: "::",
235235
singleLineReversedCardSeparator: ":::",
236-
multilineCardSeparator: "\n",
236+
multilineCardSeparator: "",
237237
multilineReversedCardSeparator: "??",
238238
multilineCardEndMarker: "---",
239239
convertHighlightsToClozes: false,

0 commit comments

Comments
 (0)