Skip to content

Commit

Permalink
update to v0.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Dec 27, 2022
1 parent 570d460 commit e458497
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 28 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

Empty file modified build-aux/dist-vendor.sh
100644 → 100755
Empty file.
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.11',
version: '0.5.12',
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.11"
version = "0.5.12"
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.11").unwrap(),
version: semver::Version::parse("0.5.12").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.11"
version = "0.5.12"
edition = "2021"
rust-version = "1.65"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

<!-- /// Translators: Don't translate the changelog -->
<releases>
<release version="0.5.11" date="2022-12-27">
<release version="0.5.12" date="2022-12-27">
<description>
<p>this release changes:</p>
<ul>
Expand Down

0 comments on commit e458497

Please sign in to comment.