diff --git a/CHANGES.rst b/CHANGES.rst
index dd188cf86a7e0579e3fbb48432135fd73c641f12..400ded0f15dc4dd2a4143aa6f106a3d0539bfee8 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,23 @@
+Changes in synapse 0.3.3 (2014-09-22)
+=====================================
+
+Homeserver:
+ * Fix bug where you continued to get events for rooms you had left.
+
+Webclient:
+ * Add support for video calls with basic UI.
+ * Fix bug where one to one chats were named after your display name rather
+   than the other person's.
+ * Fix bug which caused lag when typing in the textarea.
+ * Refuse to run on browsers we know won't work.
+ * Trigger pagination when joining new rooms.
+ * Fix bug where we sometimes didn't display invitations in recents.
+ * Automatically join room when accepting a VoIP call.
+ * Disable outgoing and reject incoming calls on browsers we don't support
+   VoIP in.
+ * Don't display desktop notifications for messages in the room you are
+   non-idle and speaking in.
+
 Changes in synapse 0.3.2 (2014-09-18)
 =====================================
 
diff --git a/VERSION b/VERSION
index d15723fbe8de36b1c3ae302c77d8095459ea88e6..1c09c74e221cd58f30240fbcfd9545ed19df54d7 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.3.2
+0.3.3
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 0dbad9a0defe37ea34fcabdc671876b7f6ad032b..bba551b2c41dc0e036947b3de00ab406b4e6458d 100644
--- a/synapse/__init__.py
+++ b/synapse/__init__.py
@@ -16,4 +16,4 @@
 """ This is a reference implementation of a synapse home server.
 """
 
-__version__ = "0.3.2"
+__version__ = "0.3.3"