From c4e6fcc451f57136d67580e3e60c3529448769ba Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Sat, 19 May 2018 13:11:02 +0300 Subject: [PATCH] Version bump. --- CHANGELOG.md | 8 ++++++-- hammond-gtk/resources/org.gnome.Hammond.appdata.xml | 2 +- hammond-gtk/src/headerbar.rs | 2 +- meson.build | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d13bb70..7c7f416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added: +### Changed: +### Fixed: +### Removed: + +## [0.3.3] - 2018-05-19 +### Added: - Initial functionality for importing shows from an OPML file was implemented. - ShowsView now rembmers the vertical alignment of the scrollbar between refreshes. 4d2b64e79d8518454b3677612664cd32044cf837 @@ -17,8 +23,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed: - Fixed a of by one bug in the `ShowsView` where the last show was never shown. bd12b09cbc8132fd39a266fd091e24bc6c3c040f -### Removed: - ## [0.3.2] - 2018-05-07 ### Added: - Vies now have a new fancy scrolling animation when they are refereshed. diff --git a/hammond-gtk/resources/org.gnome.Hammond.appdata.xml b/hammond-gtk/resources/org.gnome.Hammond.appdata.xml index 36eff7f..db08187 100644 --- a/hammond-gtk/resources/org.gnome.Hammond.appdata.xml +++ b/hammond-gtk/resources/org.gnome.Hammond.appdata.xml @@ -28,7 +28,7 @@ - + https://gitlab.gnome.org/World/hammond jpetridis@gnome.org diff --git a/hammond-gtk/src/headerbar.rs b/hammond-gtk/src/headerbar.rs index 90c479c..597a96c 100644 --- a/hammond-gtk/src/headerbar.rs +++ b/hammond-gtk/src/headerbar.rs @@ -312,7 +312,7 @@ fn about_dialog(window: >k::Window) { dialog.set_modal(true); // TODO: make it show it fetches the commit hash from which it was built // and the version number is kept in sync automaticly - dialog.set_version("0.3.2"); + dialog.set_version("0.3.3"); dialog.set_program_name("Hammond"); // TODO: Need a wiki page first. // dialog.set_website("https://wiki.gnome.org/Design/Apps/Potential/Podcasts"); diff --git a/meson.build b/meson.build index 5c7455d..e86c25f 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'hammond', 'rust', - version: '0.3.2', + version: '0.3.3', license: 'GPLv3', )