Bump version to 0.4.1
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 91fa101..af93632 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,3 +1,6 @@
+0.4.1
+  * Fix issue #196: prevent exponential number of calls when calling 'init'
+    multiple times. Reported by bbayles and fixed by Delgan.
 0.4.0
   * Fix issue #142: reset LIGHT_EX colors with RESET_ALL. Reported by Delgan
   * Fix issue #147: ignore invalid "erase" ANSI codes. Reported by shin-
diff --git a/colorama/__init__.py b/colorama/__init__.py
index 818d88c..2a3bf47 100644
--- a/colorama/__init__.py
+++ b/colorama/__init__.py
@@ -3,4 +3,4 @@
 from .ansi import Fore, Back, Style, Cursor
 from .ansitowin32 import AnsiToWin32
 
-__version__ = '0.4.0'
+__version__ = '0.4.1'