* Merge branch &39;release/1.3.3&39; ([`a9b6de1`](https://github.com/xeroc/python-graphenelib/commit/a9b6de18a9ce6a9c9ec6c7e1e1cb284d6bdfea03))
* release ([`23b3452`](https://github.com/xeroc/python-graphenelib/commit/23b34522ec266e70370d086ac44e18742baa884d))
* Updating Authors ([`d14787c`](https://github.com/xeroc/python-graphenelib/commit/d14787c3d3a715d629ee5fc41949750231d466c6))
* Ensure an object is in cache for sure ([`efcd391`](https://github.com/xeroc/python-graphenelib/commit/efcd39169e45a842335ea2d4ac4d26ab86920ade))
* Always sign() proposal trx before broadcasting
When calling broadcast() on proposal, it proxied to self.parent, which
performing self.sign() only if not signed already. Proposal uses main
TransactionBuilder instance by default, which may contain signature from
previously broadcasted trx, thus failing proposal broadcast with
&34;Missing Active Authority&34;. ([`681dc1a`](https://github.com/xeroc/python-graphenelib/commit/681dc1af3075fbcad6769d05f5a6b93d157a240b))
* Merge pull request 171 from bitfag/fix-tox-linting
Fix tox linting ([`2f46510`](https://github.com/xeroc/python-graphenelib/commit/2f4651049b96db37cb9bb797b547631c37dc4ce2))
* Remove python 3.5 from tox envlist ([`5817a52`](https://github.com/xeroc/python-graphenelib/commit/5817a52c8f44c5c7b33e4fd41c7da0380bef9f83))
* Fix linting in tox
graphene*:0:1: E902 FileNotFoundError: [Errno 2] No such file or
directory: &39;graphene*&39; ([`d488702`](https://github.com/xeroc/python-graphenelib/commit/d4887028aa4f2454158a9884e972bb01a841e13f))
* Merge pull request 170 from bitfag/transactionbuilder-double-instantiation
Avoid double instantiation of operations ([`41a4fa2`](https://github.com/xeroc/python-graphenelib/commit/41a4fa282d234a89b8cad7749fa7d1cdf6e06046))
* Avoid double instantiation of operations
Problem: any high-level method as bitshares.transfer() instantiates
op = operations.Transfer(), then self.json() inside TransactionBuilder
makes OrderedDict to dict, and then Signed_Transaction class have to
reconstruct all operations via kwargs[&34;operations&34;] = Array([opklass(a)
for a in ops]). This way breaks possible use of Variant type encoding
(may be used by other chains). ([`a9f7549`](https://github.com/xeroc/python-graphenelib/commit/a9f754910b9134ac72e66d9d07c99d602c3cf775))
* Merge pull request 169 from xeroc/fixes-for-python-3-7
Fixes for python 3 7 ([`39ed412`](https://github.com/xeroc/python-graphenelib/commit/39ed4126b1fd98b68b11c6016ee8a1209fb7d3c0))
* also for aio ([`35789e9`](https://github.com/xeroc/python-graphenelib/commit/35789e9805119354faf8a21add48387c67213fd2))
* fixes for python 3.7 StopIteration
https://www.python.org/dev/peps/pep-0479/ ([`58b3eb5`](https://github.com/xeroc/python-graphenelib/commit/58b3eb56585687d7cbb32a69965a23e394912a13))
* Merge pull request 158 from bitfag/websocket-client-dep
Allow wider websocket-client versions ([`6de4720`](https://github.com/xeroc/python-graphenelib/commit/6de4720f506070ab3a24a89795cce4193b45cf14))
* Merge pull request 159 from bitfag/fix-test_child_pub
Install speedups when testing with tox ([`2f06d72`](https://github.com/xeroc/python-graphenelib/commit/2f06d72be2535518cae0c724e2312bad29bbeade))
* Merge pull request 165 from bitfag/164-api-url-change
Fix rpc args extraction in connect() ([`9d49b8d`](https://github.com/xeroc/python-graphenelib/commit/9d49b8dd46870a1829326d1973751d7e7761f667))
* Merge pull request 168 from bitfag/aio-api-getattr-fix
Fix RPC method calling in aio version ([`7eacfb6`](https://github.com/xeroc/python-graphenelib/commit/7eacfb68fc776fe18e1401426b64b5ef3d1b4780))
* Fix RPC method calling in aio version
__getattr__() in grapheneapi.aio.Api wasn&39;t defined, so it used regular
__getattr__(), which didn&39;t contains `await func()` call, so it just
returned a coroutine without actually calling it, so all exception
handling didn&39;t worked here. Thus, connection-related errors (broken
connection) weren&39;t handled. ([`893e341`](https://github.com/xeroc/python-graphenelib/commit/893e341270c418b677d2a8b28e3adc9449d6ce46))
* Fix rpc args extraction in connect()
Closes: 164 ([`bb237db`](https://github.com/xeroc/python-graphenelib/commit/bb237db4bde940148e7e4e52bcb6b6d122548d73))
* Merge pull request 161 from bitfag/appendSigner-custom-field
Add new method to obtain permission field ([`c26845f`](https://github.com/xeroc/python-graphenelib/commit/c26845f6b30fed3f753aa10bf1a8484382e31b48))
* Add new method to obtain permission field
Some chains could have different key-storing fields in account class,
e.g. &34;active_authority&34; instead of just &34;active&34;. Separate method avoids
redefinition of appendSigner() in child libraries. ([`ee8916c`](https://github.com/xeroc/python-graphenelib/commit/ee8916c3a1a5319570777ca60ea092b1817f6383))
* Install speedups on linux only ([`764dcba`](https://github.com/xeroc/python-graphenelib/commit/764dcba28e3a3e4f39a8d579955d9fcbe96a4ad3))
* Add py38 to envlist ([`36b6592`](https://github.com/xeroc/python-graphenelib/commit/36b6592a7e98c3928778993e97dd3f967888b317))
* Install speedups when testing with tox ([`de29d33`](https://github.com/xeroc/python-graphenelib/commit/de29d33787ad87900c3eebee191950cf860dd15f))
* Allow wider websocket-client versions