diff --git a/README.md b/README.md
index 94a447c3..886784fc 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
Download the [latest release](https://github.com/DragonComputer/Dragonfire/releases/latest) (the `.deb` file) and:
```Shell
-sudo dpkg -i dragonfire_0.9.8_amd64.deb
+sudo dpkg -i dragonfire_0.9.9_amd64.deb
```
To install the dependencies run `sudo apt-get -f install` right after the `dpkg -i` command. The installation will automatically download the pre-trained English model of Mozilla DeepSpeech (1.31 GB download size) and will place it under `/usr/share/dragonfire/deepspeech/models` directory. You can manually [download the model](https://github.com/mozilla/DeepSpeech/releases/download/v0.1.1/deepspeech-0.1.1-models.tar.gz) if you want.
diff --git a/debian/changelog b/debian/changelog
index 7c7c5a2b..ae8ae3f6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+dragonfire (0.9.9) unstable; urgency=medium
+
+ * Twitter integration implemented
+ * Ability to answer arithmetic questions added
+ * A fourth way to respond, Deep Conversation system added
+
+ -- Mehmet Mert Yildiran Sat, 12 May 2018 14:59:20 +0000
+
dragonfire (0.9.8) unstable; urgency=medium
* Migrated from Kaldi Speech Recognition Toolkit to Mozilla DeepSpeech
diff --git a/debian/dragonfire.desktop b/debian/dragonfire.desktop
index 6ad3a481..5d7ce4fe 100644
--- a/debian/dragonfire.desktop
+++ b/debian/dragonfire.desktop
@@ -1,5 +1,5 @@
[Desktop Entry]
-Version=0.9.8
+Version=0.9.9
Type=Application
Name=Dragonfire
Comment=Virtual Assistant for Linux
diff --git a/setup.py b/setup.py
index 90fb75d9..383aefff 100644
--- a/setup.py
+++ b/setup.py
@@ -54,7 +54,7 @@ def pkgconfig(*packages):
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
- version='0.9.8',
+ version='0.9.9',
description='Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions',
long_description=long_description,