diff --git a/CHANGELOG.md b/CHANGELOG.md
index d2a53ea..098c768 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
+
+
+## [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 d07a607..36eff7f 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 1e72afd..3a9c19a 100644
--- a/hammond-gtk/src/headerbar.rs
+++ b/hammond-gtk/src/headerbar.rs
@@ -243,7 +243,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.1");
+ dialog.set_version("0.3.2");
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 fcb438f..5c7455d 100644
--- a/meson.build
+++ b/meson.build
@@ -3,7 +3,7 @@
project(
'hammond', 'rust',
- version: '0.3.1',
+ version: '0.3.2',
license: 'GPLv3',
)
diff --git a/scripts/release.sh b/scripts/release.sh
index 631900b..f8ab7cf 100755
--- a/scripts/release.sh
+++ b/scripts/release.sh
@@ -13,6 +13,7 @@ cp -rf hammond-data $DIST
cp -rf hammond-gtk $DIST
cp -rf hammond-downloader $DIST
cp Cargo.toml $DIST
+cp Cargo.lock $DIST
cp configure $DIST
cp meson.build $DIST
cp Hammond.doap $DIST