Skip to content

Commit

Permalink
bump version to v0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Dec 13, 2023
1 parent 5afaafc commit 551f563
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Fedora 39, Windows 11 23H2, ...]
- App Version: [e.g. Rnote v0.9.3]
- App Version: [e.g. Rnote v0.9.4]
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
- Desktop Environment: [e.g. Gnome 45.2]
- Display Server: [e.g. X11 or Wayland]
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.9.3"
version = "0.9.4"
edition = "2021"
rust-version = "1.70"
authors = ["The Rnote Authors"]
Expand All @@ -17,8 +17,8 @@ homepage = "https://rnote.flxzt.net"
repository = "https://github.com/flxzt/rnote"

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

log = "0.4"
pretty_env_logger = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/rnote-engine/src/fileformats/rnoteformat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ struct RnotefileWrapper {
pub type RnoteFile = RnoteFileMaj0Min9;

impl RnoteFile {
pub const SEMVER: &'static str = "0.9.3";
pub const SEMVER: &'static str = "0.9.4";
}

impl FileFormatLoader for RnoteFile {
Expand Down
12 changes: 12 additions & 0 deletions crates/rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.9.4" date="2023-12-13">
<description>
<p>this release changes:</p>
<ul>
<li>ux: increase window threshold width at where the sidebar becomes an overlay</li>
<li>fix: indicate unsaved when changing document settings (format, colors, pattern, ..)</li>
<li>fix: missing progress pulse when saving existing doc</li>
<li>fix: ui not being refreshed after loading document from file</li>
<li>fix: jumping view when zoomed out and reaching edges</li>
</ul>
</description>
</release>
<release version="0.9.3" date="2023-12-07">
<description>
<p>this release changes:</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'rnote',
['rust', 'cpp'],
version: '0.9.3',
version: '0.9.4',
meson_version: '>= 1.0',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down

0 comments on commit 551f563

Please sign in to comment.