bump version to 0.3.8
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 8d67bba..e5a70dc 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,8 @@
+0.3.8
+  * Fix issue #121: "invalid escape sequence" deprecation fixes on Python 3.6+
+  * Fix issue #110: fix "set console title" when working with unicode strings
+  * Fix issue #103: enable color when using "input" function on Python 3.5+
+  * Fix issue #95: enable color when stderr is a tty but stdout is not
 0.3.7
   * Fix issue #84: check if stream has 'closed' attribute before testing it
   * Fix issue #74: objects might become None at exit
diff --git a/colorama/__init__.py b/colorama/__init__.py
index 670e6b3..43556e6 100644
--- a/colorama/__init__.py
+++ b/colorama/__init__.py
@@ -3,5 +3,5 @@
 from .ansi import Fore, Back, Style, Cursor
 from .ansitowin32 import AnsiToWin32
 
-__version__ = '0.3.7'
+__version__ = '0.3.8'