Skip to content

Commit

Permalink
update to v0.5.18
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Mar 16, 2023
1 parent 588e38b commit 20b4d5b
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 19 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

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.5.17',
version: '0.5.18',
meson_version: '>= 0.57',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down
2 changes: 1 addition & 1 deletion rnote-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnote-cli"
version = "0.5.17"
version = "0.5.18"
edition = "2021"
rust-version = "1.65"

Expand Down
2 changes: 1 addition & 1 deletion rnote-fileformats/src/rnoteformat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl FileFormatLoader for RnoteFile {
impl FileFormatSaver for RnoteFile {
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
let output = RnotefileWrapper {
version: semver::Version::parse("0.5.17").unwrap(),
version: semver::Version::parse("0.5.18").unwrap(),
data: serde_json::to_value(self).context("to_value() for RnoteFile failed")?,
};

Expand Down
2 changes: 1 addition & 1 deletion rnote-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnote"
version = "0.5.17"
version = "0.5.18"
edition = "2021"
rust-version = "1.65"
build = "build.rs"
Expand Down
8 changes: 8 additions & 0 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.5.18" date="2023-03-16">
<description>
<p>this release changes:</p>
<ul>
<li>fix: panic on app start when color scheme setting is set to "Use Light Colors" / "Use Dark Colors"</li>
</ul>
</description>
</release>
<release version="0.5.17" date="2023-03-16">
<description>
<p>this release changes:</p>
Expand Down

0 comments on commit 20b4d5b

Please sign in to comment.