diff --git a/docs/conf.py b/docs/conf.py
index 283aefbf0328d13dfffa3595d7ced290b6f0ec46..11d165ffd7a60874bbd391b683177c749a321444 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -68,7 +68,7 @@ author = 'pharesim@protonmail.com'
 # The short X.Y version.
 version = '0.9'
 # The full version, including alpha/beta/rc tags.
-release = '0.9.3'
+release = '0.9.3.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
diff --git a/hive/__init__.py b/hive/__init__.py
index f9cdfd5701984db722e66fa322f5630c06309f75..ebb35840e7c6edeae55d65c027cba3e313c9f8a5 100644
--- a/hive/__init__.py
+++ b/hive/__init__.py
@@ -1,4 +1,4 @@
 # -*- coding: utf-8 -*-
 from .hive import Hive
 
-__version__ = '0.9.3'
+__version__ = '0.9.3.1'
diff --git a/hive/commit.py b/hive/commit.py
index dbe42e7070a067706baa891dceec0663cfa3a739..58c22a1b6ea9969d9a151e0ffc5f3726ed10b8f3 100644
--- a/hive/commit.py
+++ b/hive/commit.py
@@ -1056,11 +1056,9 @@ class Commit(object):
             })
         tb = TransactionBuilder(None,hived_instance=self.hived,wallet_instance=self.wallet,no_broadcast=self.no_broadcast,expiration=self.expiration)
         tb.appendOps([op])
-        tb.addSigningInformation(account, "active")
         tb.appendWif(signing_key)
         tb.sign()
         return tb.broadcast()
-        #return self.finalizeOp(op, account, "active")
 
     def decode_memo(self, enc_memo):
         """ Try to decode an encrypted memo
diff --git a/setup.py b/setup.py
index 1030ebea48eac645355ed49b12a0934ca629dc07..4deebd01543044499d08e33736738d435e06e83e 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ from setuptools.command.test import test as TestCommand
 
 # Package meta-data.
 NAME = 'hivepy'
-VERSION = '0.9.3'
+VERSION = '0.9.3.1'
 DESCRIPTION = 'A python hive library.'
 URL = 'https://github.com/pharesim/hive-python'
 EMAIL = 'pharesim@protonmail.com'