Skip to content

Commit

Permalink
changelog, dependencies, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Sep 5, 2019
1 parent 51b52e3 commit 2978106
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.6.0
-----

- Use logger instead of print statements
- Update dependencies, fix deprecation warnings
- Use requests package for downloads on all platforms

0.5.0
-----

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ part of the development process.
Pull requests are welcomed! Please try to adhere to the following.

- code should conform to PEP8 and as well as the linting done by flake8
- include any relevant documentation updates
- include any relevant documentation updates and test cases

It's a good idea to make pull requests early on. A pull request represents the
start of a discussion, and doesn't necessarily need to be the final, finished
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ You can use this like:
>>> compile_files([source_file_path], import_remappings=["zeppeling=/my-zeppelin-checkout-folder"])
```

[More information about solc import aliasing](http://solidity.readthedocs.io/en/develop/layout-of-source-files.html#paths)
[More information about solc import aliasing](http://solidity.readthedocs.io/en/latest/layout-of-source-files.html#paths)

## Development

This project was recently forked from [py-solc](https://github.com/ethereum/py-solc) and should be considered a beta. Comments, questions, criticisms and pull requests are welcomed.
This project was forked from [py-solc](https://github.com/ethereum/py-solc) and should be considered a beta. Comments, questions, criticisms and pull requests are welcomed.

### Tests

Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
coveralls==1.7.0
pytest>=5.0.0
pytest-cov>=2.7.1
semantic_version>=2.6.0
semantic_version>=2.8.1,<3
twine==1.13.0
requests>=2.19.0
requests>=2.19.0,<3
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='py-solc-x',
version='0.5.0',
version='0.6.0',
description="""Python wrapper around the solc binary with 0.5.x support""",
long_description_markdown_filename='README.md',
author='Ben Hauser (forked from py-solc by Piper Merriam)',
Expand All @@ -19,8 +19,8 @@
setup_requires=['setuptools-markdown'],
python_requires='>=3.4, <4',
install_requires=[
"semantic_version>=2.8.1",
"requests>=2.9.1"
"semantic_version>=2.8.1,<3",
"requests>=2.19.0,<3"
],
license="MIT",
zip_safe=False,
Expand Down

0 comments on commit 2978106

Please sign in to comment.