Skip to content

Commit ea16f84

Browse files
Merge pull request #34 from ElrondNetwork/version-1.0.18
Prepare version 1.0.18
2 parents 1a89ed3 + 42098b6 commit ea16f84

3 files changed

Lines changed: 14 additions & 6 deletions

File tree

erdpy/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes will be documented in this file.
44

55
Check [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`

erdpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.17"
1+
__version__ = "1.0.18"

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
with 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

88
try:
99
with open('./erdpy/_version.py', 'wt') as versionfile:
10-
versionfile.write(f'__version__ = "{VERSION}"')
10+
versionfile.write(f'__version__ = "{VERSION}"\n')
1111
except FileNotFoundError:
1212
pass
1313

@@ -38,9 +38,8 @@
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",
@@ -51,5 +50,5 @@
5150
"erdpy=erdpy.cli:main",
5251
],
5352
},
54-
python_requires=">=3.6"
53+
python_requires=">=3.8"
5554
)

0 commit comments

Comments
 (0)