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',
)