Skip to content

Commit

Permalink
chore: bump app version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Mar 1, 2024
1 parent e129f78 commit ee76fd1
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Fedora 39, Windows 11 23H2, ...]
- App Version: [e.g. Rnote v0.9.4]
- App Version: [e.g. Rnote v0.10.0]
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
- Desktop Environment: [e.g. Gnome 45.2]
- Display Server: [e.g. X11 or Wayland]
- Display Server: [e.g. Wayland or X11]
- Input Source: [e.g. Mouse and Keyboard, On-Screen-Tablet, External Graphics Tablet, ...]

**Additional context**
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.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ edition = "2021"
homepage = "https://rnote.flxzt.net"
license = "GPL-3.0-or-later"
repository = "https://github.com/flxzt/rnote"
rust-version = "1.70"
version = "0.9.4"
rust-version = "1.74"
version = "0.10.0"

[workspace.dependencies]
rnote-compose = { version = "0.9.4", path = "crates/rnote-compose" }
rnote-engine = { version = "0.9.4", path = "crates/rnote-engine" }
rnote-compose = { version = "0.10.0", path = "crates/rnote-compose" }
rnote-engine = { version = "0.10.0", path = "crates/rnote-engine" }

adw = { version = "0.6.0", package = "libadwaita", features = ["v1_4"] }
anyhow = "1.0"
Expand Down
3 changes: 2 additions & 1 deletion MAINTAINING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
- Run cargo update and update dependencies in flatpak dev Yaml manifest
- Update the flatpak dev Json manifest from Yaml
- Commit the changes and push
- Release commit: replace all version numbers in the project and build, install and run all tests:
- Release commit: Update the changelog in the appdata file, replace all version numbers in the project and build,
install and run all tests:
- `meson install -C _mesonbuild`
- `meson compile ui-cargo-clippy -C _mesonbuild`
- `meson compile cli-cargo-clippy -C _mesonbuild`
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: &'static str = "0.9.4";
pub const SEMVER: &'static str = "0.10.0";
}

impl FileFormatLoader for RnoteFile {
Expand Down
26 changes: 26 additions & 0 deletions crates/rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,32 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.10.0" date="2024-03-01">
<description>
<p>this release changes:</p>
<ul>
<li>feat: touch-hold context-menu with basic actions (thanks to @silvasch)</li>
<li>feat: added polygon shape and builder</li>
<li>feat: added adjust-document Pdf import option that configures the document for improved annotation use-case</li>
<li>improv: additional color button (default: white) (thanks to @silvasch)</li>
<li>improv: new keyboard shortcuts for managing windows and tabs (thanks to @silvasch)</li>
<li>improv: autosave all tabs, but only ones that are flagged modified (thanks to @Doublonmousse)</li>
<li>improv: don't export empty layers when exporting to xopp (thanks to @Doublonmousse)</li>
<li>improv: workspace browser is now separated into three sections: folders - rnote notes - other importable files</li>
<li>improv: use start aspect ratio when resizing and locking aspect-ratio</li>
<li>improv: renaming file in workspace browser selects only file stem initially</li>
<li>improv: move document-layout option from canvas-menu to settings</li>
<li>improv: reduce repaints - when stroke is finished, cache origin-indicator rendering</li>
<li>improv: added new-window menu entry</li>
<li>improv: file watcher implementation and rnote file writing, possibly fixing "reload document" toasts when file is saved on windows</li>
<li>fix: failing export/clipboard-copy with large images (thanks to @Doublonmousse)</li>
<li>fix: menus positions when opened through keyboard shortcut (thanks to @detiam)</li>
<li>fix: zoom label not being updated after switching tab</li>
<li>fix: regression where margin is not applied when exporting selection</li>
<li>fix: undo/redo triggering document-modified flag</li>
</ul>
</description>
</release>
<release version="0.9.4" date="2023-12-13">
<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.4',
version: '0.10.0',
meson_version: '>= 1.0',
)
# add a patch suffix for alpha or beta versions in format '-<alpha|beta>.<x>'.
Expand Down

0 comments on commit ee76fd1

Please sign in to comment.