Skip to content

Commit

Permalink
bump rnote version to v0.9.0,
Browse files Browse the repository at this point in the history
add changelog
  • Loading branch information
flxzt committed Oct 6, 2023
1 parent 0e42ed2 commit 66be099
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 9 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.2]
- App Version: [e.g. Rnote v0.9.0]
- 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.2"
version = "0.9.0"
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.2", path = "crates/rnote-compose" }
rnote-engine = { version="0.8.2", path = "crates/rnote-engine" }
rnote-compose = { version="0.9.0", path = "crates/rnote-compose" }
rnote-engine = { version="0.9.0", path = "crates/rnote-engine" }

log = "0.4"
pretty_env_logger = "0.5"
Expand Down
19 changes: 19 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,25 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.9.0" date="2023-10-06">
<description>
<p>this release changes:</p>
<ul>
<li>feature: added ctrl plus space as configurable shortcut</li>
<li>feature: added plaintext file import</li>
<li>feature: ability to nudge view while performing certain pen actions</li>
<li>improvement: port the UI to libadwaita 1.4 with an improved sidebar and adaptivity</li>
<li>improvement: scale widths of brush-strokes and shapes when resizing selection</li>
<li>improvement: added keyboard shortcuts to add/remove pages when in fixed-size layout</li>
<li>improvement: the current document view is saved and restored to/from rnote files</li>
<li>improvement: orientation toggle usable when using custom document dimensions</li>
<li>improvement: shape builder picker sidebar location (thanks to @PhilDevProg)</li>
<li>fix: when using the vertical-space tool strokes that came into view were not initially rendered</li>
<li>fix: color picker dialog could be opened multiple times</li>
<li>fix: default view offset when opening a new tab</li>
</ul>
</description>
</release>
<release version="0.8.2" date="2023-08-26">
<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.8.2',
version: '0.9.0',
meson_version: '>= 1.0',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down

0 comments on commit 66be099

Please sign in to comment.