Skip to content

Commit

Permalink
update to v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Aug 25, 2023
1 parent 67f608a commit 210fd7f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 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 38, Windows 11 22H2, ...]
- App Version: [e.g. Rnote v0.8.0]
- App Version: [e.g. Rnote v0.8.1]
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
- Desktop Environment: [e.g. Gnome 44.2]

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.8.0"
version = "0.8.1"
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.8.0", path = "crates/rnote-compose" }
rnote-engine = { version="0.8.0", path = "crates/rnote-engine" }
rnote-compose = { version="0.8.1", path = "crates/rnote-compose" }
rnote-engine = { version="0.8.1", 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 @@ -54,7 +54,7 @@ struct RnotefileWrapper {
pub type RnoteFile = RnoteFileMaj0Min6;

impl RnoteFile {
pub const SEMVER: &str = "0.8.0";
pub const SEMVER: &str = "0.8.1";
}

impl FileFormatLoader for RnoteFile {
Expand Down
2 changes: 1 addition & 1 deletion crates/rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.8.0" date="2023-08-25">
<release version="0.8.1" date="2023-08-25">
<description>
<p>this release changes:</p>
<ul>
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.8.0',
version: '0.8.1',
meson_version: '>= 0.57',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down

0 comments on commit 210fd7f

Please sign in to comment.