Skip to content

Commit

Permalink
bump version to v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Nov 16, 2023
1 parent 97828c9 commit 7075998
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 52 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.9.1]
- App Version: [e.g. Rnote v0.9.2]
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
- Desktop Environment: [e.g. Gnome 44.2]

Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ assignees: ''
---

**Please submit only one feature request in one issue!**
If it is UX / UI related, don't post how a single aspect of the UI should be changed, rather in which use-case you felt the UI is lacking or should be improved.
If it is UX / UI related, don't post how a single aspect of the UI should be changed, rather in which use-case you felt
the UI is lacking or should be improved.

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Expand Down
103 changes: 58 additions & 45 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.1"
version = "0.9.2"
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.1", path = "crates/rnote-compose" }
rnote-engine = { version="0.9.1", path = "crates/rnote-engine" }
rnote-compose = { version="0.9.2", path = "crates/rnote-compose" }
rnote-engine = { version="0.9.2", 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: &str = "0.9.1";
pub const SEMVER: &str = "0.9.2";
}

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.2" date="2023-11-16">
<description>
<p>this release changes:</p>
<ul>
<li>feature: option to snap positions in different tools to pattern and document grid</li>
<li>feature: option to open files with default app from workspacebrowser list (thanks to @silvasch)</li>
<li>fix: initial documents opened with rnote have blurry rendering when system scale-factor is larger than 1.0</li>
<li>fix: selection after nudging view only included strokes in current viewport</li>
<li>fix: text files not appearing in workspacebrowser</li>
</ul>
</description>
</release>
<release version="0.9.1" date="2023-11-01">
<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.1',
version: '0.9.2',
meson_version: '>= 1.0',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down

0 comments on commit 7075998

Please sign in to comment.