Version bump.

This commit is contained in:
Jordan Petridis 2018-05-19 13:11:02 +03:00
parent 22ae5242b2
commit c4e6fcc451
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6
4 changed files with 9 additions and 5 deletions

View File

@ -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.

View File

@ -28,7 +28,7 @@
</screenshot>
</screenshots>
<releases>
<release version="0.3.2" date="2018-05-07"/>
<release version="0.3.3" date="2018-05-19"/>
</releases>
<url type="homepage">https://gitlab.gnome.org/World/hammond</url>
<update_contact>jpetridis@gnome.org</update_contact>

View File

@ -312,7 +312,7 @@ fn about_dialog(window: &gtk::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");

View File

@ -3,7 +3,7 @@
project(
'hammond', 'rust',
version: '0.3.2',
version: '0.3.3',
license: 'GPLv3',
)