Skip to content

Commit 07dd598

Browse files
committed
chore: bump version, update changelog, satisfy clippy
1 parent 9e8f06b commit 07dd598

File tree

6 files changed

+23
-15
lines changed

6 files changed

+23
-15
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If applicable, add screenshots to help explain your problem.
2828

2929
**Desktop (please complete the following information):**
3030
- OS: [e.g. Fedora 42, Windows 11 23H2, ...]
31-
- App Version: [e.g. Rnote v0.13.0]
31+
- App Version: [e.g. Rnote v0.13.1]
3232
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
3333
- Desktop Environment: [e.g. Gnome 48.0]
3434
- Display Server: [e.g. Wayland or X11]

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ homepage = "https://rnote.flxzt.net"
1414
license = "GPL-3.0-or-later"
1515
repository = "https://github.com/flxzt/rnote"
1616
rust-version = "1.89"
17-
version = "0.13.0"
17+
version = "0.13.1"
1818

1919
[workspace.dependencies]
20-
rnote-compose = { version = "0.13.0", path = "crates/rnote-compose" }
21-
rnote-engine = { version = "0.13.0", path = "crates/rnote-engine" }
20+
rnote-compose = { version = "0.13.1", path = "crates/rnote-compose" }
21+
rnote-engine = { version = "0.13.1", path = "crates/rnote-engine" }
2222

2323
adw = { version = "0.8.0", package = "libadwaita", features = ["v1_7"] }
2424
anyhow = "1.0"

crates/rnote-ui/data/app.metainfo.xml.in.in

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,15 @@
8787

8888
<!-- The changelog should not be translated -->
8989
<releases>
90+
<release version="0.13.1" date="2025-09-09">
91+
<description>
92+
<p>this release changes:</p>
93+
<ul>
94+
<li>fix: occasional PDF import failure (thanks to @Doublonmousse)</li>
95+
<li>fix: add back accidentally removed 'Pen Style' keyboard shortcuts (thanks to @Doublonmousse)</li>
96+
</ul>
97+
</description>
98+
</release>
9099
<release version="0.13.0" date="2025-09-06">
91100
<description>
92101
<p>this release changes:</p>

crates/rnote-ui/src/dialogs/import.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -521,13 +521,12 @@ pub(crate) async fn dialog_import_pdf_w_prefs(
521521
password,
522522
)
523523
.await
524+
&& let Err(e) = tx_import.unbounded_send(Err(e))
524525
{
525-
if let Err(e) = tx_import.unbounded_send(Err(e)) {
526-
error!(
527-
"Failed to load PDF, but failed to send signal through channel. Err: {e:?}"
528-
);
529-
return;
530-
}
526+
error!(
527+
"Failed to load PDF, but failed to send signal through channel. Err: {e:?}"
528+
);
529+
return;
531530
};
532531

533532
if let Err(e) = tx_import.unbounded_send(Ok(true)) {

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('rnote', ['rust', 'cpp'], version: '0.13.0', meson_version: '>= 1.0')
1+
project('rnote', ['rust', 'cpp'], version: '0.13.1', meson_version: '>= 1.0')
22
# add a patch suffix for alpha or beta versions in format '-<alpha|beta>.<x>'.
33
patch = ''
44

0 commit comments

Comments
 (0)