Skip to content

Commit 551f563

Browse files
committed
bump version to v0.9.4
1 parent 5afaafc commit 551f563

File tree

6 files changed

+22
-10
lines changed

6 files changed

+22
-10
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 39, Windows 11 23H2, ...]
31-
- App Version: [e.g. Rnote v0.9.3]
31+
- App Version: [e.g. Rnote v0.9.4]
3232
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
3333
- Desktop Environment: [e.g. Gnome 45.2]
3434
- Display Server: [e.g. X11 or Wayland]

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
@@ -8,7 +8,7 @@ members = [
88
resolver = "2"
99

1010
[workspace.package]
11-
version = "0.9.3"
11+
version = "0.9.4"
1212
edition = "2021"
1313
rust-version = "1.70"
1414
authors = ["The Rnote Authors"]
@@ -17,8 +17,8 @@ homepage = "https://rnote.flxzt.net"
1717
repository = "https://github.com/flxzt/rnote"
1818

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

2323
log = "0.4"
2424
pretty_env_logger = "0.5"

crates/rnote-engine/src/fileformats/rnoteformat/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct RnotefileWrapper {
5656
pub type RnoteFile = RnoteFileMaj0Min9;
5757

5858
impl RnoteFile {
59-
pub const SEMVER: &'static str = "0.9.3";
59+
pub const SEMVER: &'static str = "0.9.4";
6060
}
6161

6262
impl FileFormatLoader for RnoteFile {

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,18 @@
7272

7373
<!-- The changelog should not be translated -->
7474
<releases>
75+
<release version="0.9.4" date="2023-12-13">
76+
<description>
77+
<p>this release changes:</p>
78+
<ul>
79+
<li>ux: increase window threshold width at where the sidebar becomes an overlay</li>
80+
<li>fix: indicate unsaved when changing document settings (format, colors, pattern, ..)</li>
81+
<li>fix: missing progress pulse when saving existing doc</li>
82+
<li>fix: ui not being refreshed after loading document from file</li>
83+
<li>fix: jumping view when zoomed out and reaching edges</li>
84+
</ul>
85+
</description>
86+
</release>
7587
<release version="0.9.3" date="2023-12-07">
7688
<description>
7789
<p>this release changes:</p>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'rnote',
33
['rust', 'cpp'],
4-
version: '0.9.3',
4+
version: '0.9.4',
55
meson_version: '>= 1.0',
66
)
77
# add a patch suffix for alpha or beta version, starting with a dash.

0 commit comments

Comments
 (0)