From cef0fb164461db7ddc79f8f4eefbbc7dfb000028 Mon Sep 17 00:00:00 2001
From: Holger Nahrstaedt <holgernahrstaedt@gmx.de>
Date: Sun, 3 May 2020 01:44:09 +0200
Subject: [PATCH] Bug fix release

---
 CHANGELOG.rst               | 4 ++++
 beem/cli.py                 | 4 ++--
 beem/version.py             | 2 +-
 beemapi/version.py          | 2 +-
 beembase/version.py         | 2 +-
 beemgraphenebase/version.py | 2 +-
 setup.py                    | 2 +-
 7 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 6e137ea2..8c8b2124 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 8b3186bc..04c76eeb 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 d3b71e5c..9555a597 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 d3b71e5c..9555a597 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 d3b71e5c..9555a597 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 d3b71e5c..9555a597 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 42a03dbf..5966ce1a 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']
 
-- 
GitLab