Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump version to v1.12.9 #1109

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: npm install -g pnpm && pnpm install

- name: Lint
run: pnpm lint
run: pnpm lint || (echo && echo "Run 'pnpm format' to fix." && exit 1)

- name: Test
run: pnpm test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Fight the forgetting curve & note aging by reviewing flashcards & notes using sp

1. FSRS

- [ ] Store scheduling info in a dedicated file
- [ ] Store scheduling info in a dedicated file (`.yaml`)
- [ ] Migrate from one storage system to another
- [ ] Implement FSRS
- [ ] Update documentation
Expand Down
11 changes: 11 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,19 @@ 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.9](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.8...1.12.9)

- chore: add linting for camelcase variables [`#1098`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1098)
- refactor: move the statistics to the plugin's settings [`#1096`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1096)
- fix: remove caret from package manager definition [`#1095`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1095)
- refactor: update settings [`#1094`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1094)
- fix: sidebar note display [`#1093`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1093)

#### [1.12.8](https://github.com/st3v3nmw/obsidian-spaced-repetition/compare/1.12.7...1.12.8)

> 25 September 2024

- chore: bump version to v1.12.8 [`#1092`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1092)
- feat: added delay option for the review buttons [`#1049`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1049)
- fix: ignore \*_/_.excalidraw.md files by default [`#1090`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1090)
- fix: Only consider filtered notes for next note [`#1089`](https://github.com/st3v3nmw/obsidian-spaced-repetition/pull/1089)
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": "obsidian-spaced-repetition",
"name": "Spaced Repetition",
"version": "1.12.8",
"version": "1.12.9",
"minAppVersion": "1.2.8",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"author": "Stephen Mwangi",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-spaced-repetition",
"version": "1.12.8",
"version": "1.12.9",
"description": "Fight the forgetting curve by reviewing flashcards & entire notes.",
"main": "main.js",
"scripts": {
Expand Down
Loading