diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 42735de9828c13701890bea9f3d13ea08fe16250..cd9171fa595e950a6406d1d4f7b6f57df159192d 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,5 +1,9 @@
 Changelog
 =========
+0.24.1
+------
+* fixed missing module in setup.py
+
 0.24.0
 ------
 * new beemstorage module
diff --git a/setup.py b/setup.py
index 8a9029e245352008de08f241ff3b6534200c12cc..06f60b30c0e05bffe316802be4472dccc7328996 100755
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ except LookupError:
     ascii = codecs.lookup('ascii')
     codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
 
-VERSION = '0.24.0'
+VERSION = '0.24.1'
 
 tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
 
@@ -73,9 +73,9 @@ if __name__ == '__main__':
         long_description=get_long_description(),
         download_url='https://github.com/holgern/beem/tarball/' + VERSION,
         author='Holger Nahrstaedt',
-        author_email='holger@nahrstaedt.de',
+        author_email='nahrstaedt@gmail.com',
         maintainer='Holger Nahrstaedt',
-        maintainer_email='holger@nahrstaedt.de',
+        maintainer_email='nahrstaedt@gmail.com',
         url='http://www.github.com/holgern/beem',
         keywords=['hive', 'steem', 'library', 'api', 'rpc'],
         packages=[
@@ -83,7 +83,8 @@ if __name__ == '__main__':
             "beemapi",
             "beembase",
             "beemgraphenebase",
-            "beemgrapheneapi"
+            "beemgrapheneapi",
+            "beemstorage"
         ],
         classifiers=[
             'License :: OSI Approved :: MIT License',