diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 6e137ea25fcdded79c94e4896eca42e8d93d6226..8c8b212485e7a4a234242ef656c61fcce5159ece 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,5 +1,9 @@
 Changelog
 =========
+0.23.3
+------
+* bugfix for beempy post
+
 0.23.2
 ------
 * post detects now communities and set category correctly
diff --git a/beem/cli.py b/beem/cli.py
index 8b3186bcd967ebeba893005a05f70d1bb21801d3..04c76eebb7964ad461a9a646aaba2138602de310 100644
--- a/beem/cli.py
+++ b/beem/cli.py
@@ -2116,8 +2116,8 @@ def post(markdown_file, account, title, permlink, tags, reply_identifier, commun
         dmp = dmp_module.diff_match_patch()
         patch = dmp.patch_make(comment.body, body)
         patch_text = dmp.patch_toText(patch)
-        tx = stm.post(title, patch_text, author=author, permlink=permlink,
-                      tags=tags, parse_body=parse_body, app='beempy/%s' % (__version__))        
+        tx = stm.post(title, patch_text, author=author, permlink=permlink, reply_identifier=reply_identifier, community=community,
+                      tags=tags, parse_body=False, app='beempy/%s' % (__version__))        
     if stm.unsigned and stm.nobroadcast and stm.steemconnect is not None:
         tx = stm.steemconnect.url_from_tx(tx)
     elif stm.unsigned and stm.nobroadcast and stm.hivesigner is not None:
diff --git a/beem/version.py b/beem/version.py
index d3b71e5cd02cba2be146a999c82b2e1a639570cf..9555a597c95e593eaaf164569350b17a23d94431 100644
--- a/beem/version.py
+++ b/beem/version.py
@@ -1,2 +1,2 @@
 """THIS FILE IS GENERATED FROM beem SETUP.PY."""
-version = '0.23.2'
+version = '0.23.3'
diff --git a/beemapi/version.py b/beemapi/version.py
index d3b71e5cd02cba2be146a999c82b2e1a639570cf..9555a597c95e593eaaf164569350b17a23d94431 100644
--- a/beemapi/version.py
+++ b/beemapi/version.py
@@ -1,2 +1,2 @@
 """THIS FILE IS GENERATED FROM beem SETUP.PY."""
-version = '0.23.2'
+version = '0.23.3'
diff --git a/beembase/version.py b/beembase/version.py
index d3b71e5cd02cba2be146a999c82b2e1a639570cf..9555a597c95e593eaaf164569350b17a23d94431 100644
--- a/beembase/version.py
+++ b/beembase/version.py
@@ -1,2 +1,2 @@
 """THIS FILE IS GENERATED FROM beem SETUP.PY."""
-version = '0.23.2'
+version = '0.23.3'
diff --git a/beemgraphenebase/version.py b/beemgraphenebase/version.py
index d3b71e5cd02cba2be146a999c82b2e1a639570cf..9555a597c95e593eaaf164569350b17a23d94431 100644
--- a/beemgraphenebase/version.py
+++ b/beemgraphenebase/version.py
@@ -1,2 +1,2 @@
 """THIS FILE IS GENERATED FROM beem SETUP.PY."""
-version = '0.23.2'
+version = '0.23.3'
diff --git a/setup.py b/setup.py
index 42a03dbf0140c913af7ccc9124540f3ad4b4264d..5966ce1abf6f7581fb241f92cd1198dd9d2cb90f 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.23.2'
+VERSION = '0.23.3'
 
 tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']