diff --git a/CHANGES b/CHANGES
index b340ff5..bfdf55b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,10 +4,18 @@ Em Changelog
Here you can see the full list of changes between each Em release.
+Version 0.2.1
+`````````````
+
+Released on January 15, 2014.
+
+- Install localization files with `./setup.py install`.
+
+
Version 0.2
```````````
-(release date to be anounced)
+Released on January 14, 2014.
- Improve processing of /dev/stdin input in Python 2.x.
- Add ``--line-mode`` option to highlight entire line.
diff --git a/docs/conf.py b/docs/conf.py
index d2b3d82..71ebc41 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
-version = '0.2'
+version = '0.2.1'
# The full version, including alpha/beta/rc tags.
-release = '0.2'
+release = '0.2.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/em/__init__.py b/em/__init__.py
index 9c13fb1..070fcf4 100644
--- a/em/__init__.py
+++ b/em/__init__.py
@@ -22,7 +22,7 @@
import argparse
-__version__ = '0.2'
+__version__ = '0.2.1'
#: True if Python 2.x interpreter was detected.
diff --git a/setup.py b/setup.py
index 8d6e37f..4ccbbfc 100755
--- a/setup.py
+++ b/setup.py
@@ -21,8 +21,8 @@
Links
`````
-* `documentation
-* `source code
+* `documentation `_
+* `source code `_
"""
from setuptools import setup
@@ -38,6 +38,7 @@
author_email='igor@kalnitsky.org',
description='Highlight some PATTERN in terminal\'s STDOUT',
long_description=__doc__,
+ include_package_data=True,
packages=[
'em',
],