Skip to content

Commit

Permalink
Bug fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed May 2, 2020
1 parent 55e1968 commit cef0fb1
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Changelog
=========
0.23.3
------
* bugfix for beempy post

0.23.2
------
* post detects now communities and set category correctly
Expand Down
4 changes: 2 additions & 2 deletions beem/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion beem/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.2'
version = '0.23.3'
2 changes: 1 addition & 1 deletion beemapi/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.2'
version = '0.23.3'
2 changes: 1 addition & 1 deletion beembase/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.2'
version = '0.23.3'
2 changes: 1 addition & 1 deletion beemgraphenebase/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.23.2'
version = '0.23.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
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']

Expand Down

0 comments on commit cef0fb1

Please sign in to comment.