Skip to content

Commit 52f8bbc

Browse files
committed
bump version
1 parent 85ee4aa commit 52f8bbc

File tree

8 files changed

+23
-14
lines changed

8 files changed

+23
-14
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.0
2+
current_version = 1.4.1
33

44
[bumpversion:file:tw-plugin/plugin.info]
55

RELEASING.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Since Anki doesn't have any way to deploy plugins through CD,
55
here's at least a consistent set of manual release steps.
66

77

8+
## Creating a branch
9+
10+
The TiddlyRemember release workflow requires publishing a branch.
11+
Move master or feature commits onto a release branch if necessary.
12+
13+
814
## Changing the docs
915

1016
Aside from straight bugfix releases,
@@ -64,12 +70,14 @@ Don't stop the listener until you're told to do so by a later step
6470
1. Quit the TiddlyWiki listener (hit Ctrl+C on the big PasteOps command from above).
6571
Run `cd -; mv docs/tiddlywiki.info.old docs/tiddlywiki.info` to restore the file.
6672
2. `git reset --soft HEAD^` to go back to before the last temp commit.
67-
3. Commit all doc and release changes made thus far, this time for real.
68-
4. Check your branch log and make any final rebases or adjustments.
69-
5. Push the branch to GitHub.
70-
6. Create a pull request to `master`.
73+
3. `git restore --staged tiddlywiki.info && git restore tiddlywiki.info && rm tiddlywiki.info.old`
74+
to undo the temporary listener change.
75+
4. Commit all doc and release changes made thus far, this time for real.
76+
5. Check your branch log and make any final rebases or adjustments.
77+
6. Push the branch to GitHub.
78+
7. Create a pull request to `master`.
7179
If all looks good, complete with a rebase-and-merge and delete the branch.
72-
7. Create a new release on GitHub to publicize the update:
80+
8. Create a new release on GitHub to publicize the update:
7381
https://github.com/sobjornstad/TiddlyRemember/releases/new.
7482
The tag should be in the form `v0.0.0`, using standard semantic versioning.
7583
Hold off on publishing the release for the moment.

anki-plugin/src/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
Twid = NewType('Twid', str)
1212

1313
DEFAULT_FILTER = '[type[text/vnd.tiddlywiki]] [type[]] +[!is[system]]'
14-
PLUGIN_VERSION = "1.4.0"
14+
PLUGIN_VERSION = "1.4.1"
1515
COMPATIBLE_TW_VERSIONS = [
1616
"", "1.2.2", "1.2.3", "1.3.0", "1.3.1", "1.3.2", "1.3.3", "1.3.4", "1.3.5", "1.3.6",
17-
"1.4.0",
17+
"1.4.0", "1.4.1",
1818
]
1919

2020

ankiweb-description.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TiddlyRemember is a tool that integrates <a href="https://tiddlywiki.com" rel="nofollow">TiddlyWiki</a> with Anki. You can interleave questions with your notes in TiddlyWiki, then sync them into Anki notes with one click. You can edit and move the questions around your TiddlyWiki, and they will stay connected to the Anki notes. Scheduling information in Anki is preserved when editing notes in TiddlyWiki.
22

3-
This is TiddlyRemember version 1.4.0, released March 6, 2025.
3+
This is TiddlyRemember version 1.4.1, released August 4, 2025.
44

55
<ul><li><b>Documentation</b>: <a href="https://sobjornstad.github.io/TiddlyRemember/" rel="nofollow">https://sobjornstad.github.io/TiddlyRemember/</a></li>
66
<li><b>Bug reports and feature requests</b>: <a href="https://github.com/sobjornstad/TiddlyRemember/issues" rel="nofollow">https://github.com/sobjornstad/TiddlyRemember/issues</a>, or email [email protected].</li></ul>
@@ -11,7 +11,8 @@
1111

1212
<b>Changelog:</b>
1313

14-
<ul><li><b>1.4.0</b>: Add support for overriding the deck and/or tag of an individual TiddlyRemember note; load $:/tags/Global in the parsing template.</li>
14+
<ul><li><b>1.4.1</b>: Fix a crash when syncing with certain versions and configurations of Anki.</li>
15+
<li><b>1.4.0</b>: Add support for overriding the deck and/or tag of an individual TiddlyRemember note; load $:/tags/Global in the parsing template.</li>
1516
<li><b>1.3.6</b>: Fix wrong version metadata preventing TiddlyRemember from syncing for people newly installing it.</li>
1617
<li><b>1.3.5</b>: Fix the “Browse” button in the settings not working in Qt 6 versions of Anki.</li>
1718
<li><b>1.3.4</b>: Fix several minor bugs. Folder wikis can now use relative paths to media.</li>

docs/tiddlers/TiddlyRemember Metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.4.0",
2+
"version": "1.4.1",
33
"compatible-tw5": ">= 5.1.21",
44
"compatible-anki": ">= 25.02",
55
"repository": "https://github.com/sobjornstad/TiddlyRemember",

docs/tiddlers/TiddlyRemember.tid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
created: 20200523154559237
22
list: [[Installing TiddlyRemember]] [[Configuring TiddlyRemember]] [[Creating notes in TiddlyRemember]] [[Syncing TiddlyRemember with Anki]] [[Video Introduction]] Troubleshooting
3-
modified: 20250307005046211
3+
modified: 20250804211057819
44
title: TiddlyRemember
55
type: text/vnd.tiddlywiki
66

tw-plugin/plugin.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"title": "$:/plugins/sobjornstad/TiddlyRemember",
33
"description": "TiddlyRemember: Embed Anki notes in your TiddlyWiki",
44
"author": "Soren Bjornstad",
5-
"version": "1.4.0",
5+
"version": "1.4.1",
66
"core-version": ">=5.1.21",
77
"source": "https://github.com/sobjornstad/TiddlyRemember",
88
"list": "readme license",

tw-plugin/templates/TiddlyRememberParseable.tid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type: text/vnd.tiddlywiki
88

99
<$let tr-rendering="yes">
1010

11-
<span id="tr-version">1.4.0</span>
11+
<span id="tr-version">1.4.1</span>
1212

1313
{{||$:/plugins/sobjornstad/TiddlyRemember/templates/AnkiDecks}}
1414
{{||$:/plugins/sobjornstad/TiddlyRemember/templates/AnkiTags}}

0 commit comments

Comments
 (0)