File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes will be documented in this file.
44
55Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
66
7+ ## [ 1.0.18] - 14.09.2021
8+ - Load a local ` erdpy.json ` file when running ` erdpy ` commands, containing default values for CLI options per project
9+ - Bugfix by [ MWFIAE] ( https://github.com/MWFIAE ) : correctly verify the value of the ` --bytecode ` argument
10+ - Bugfix by [ MWFIAE] ( https://github.com/MWFIAE ) : ` QueryResult ` objects are now properly JSON-serializable
11+ - Add more output information after building and deploying contracts
12+ - Improve error reporting to standard output
13+ - Enable ` mypy ` checking as a GitHub action
14+ - Add and fix more type hints for ` mypy `
15+
716## [ 1.0.16] - 27.08.2021
817 - Merge branch ` legolas-addons `
918 - Fix ` erdpy testnet ` to work with recent changes in ` elrond-go `
Original file line number Diff line number Diff line change 1- __version__ = "1.0.17 "
1+ __version__ = "1.0.18 "
Original file line number Diff line number Diff line change 33with open ("README.md" , "r" ) as fh :
44 long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"
55
6- VERSION = "1.0.17 "
6+ VERSION = "1.0.18 "
77
88try :
99 with open ('./erdpy/_version.py' , 'wt' ) as versionfile :
10- versionfile .write (f'__version__ = "{ VERSION } "' )
10+ versionfile .write (f'__version__ = "{ VERSION } "\n ' )
1111except FileNotFoundError :
1212 pass
1313
3838 zip_safe = False ,
3939 keywords = ["Elrond" ],
4040 classifiers = [
41- "Programming Language :: Python :: 3.6" ,
42- "Programming Language :: Python :: 3.7" ,
4341 "Programming Language :: Python :: 3.8" ,
42+ "Programming Language :: Python :: 3.9" ,
4443 "License :: OSI Approved :: GNU General Public License (GPL)" ,
4544 "Operating System :: POSIX :: Linux" ,
4645 "Intended Audience :: Developers" ,
5150 "erdpy=erdpy.cli:main" ,
5251 ],
5352 },
54- python_requires = ">=3.6 "
53+ python_requires = ">=3.8 "
5554)
You can’t perform that action at this time.
0 commit comments