Skip to content

Commit

Permalink
v1.4.2 (#313)
Browse files Browse the repository at this point in the history
* changelog, bumpversion

* use vyper 0.1.0b16
  • Loading branch information
iamdefinitelyahuman committed Jan 10, 2020
1 parent 225c7c4 commit 8cf919b
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 8 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased](https://github.com/iamdefinitelyahuman/brownie)

## [1.4.1](https://github.com/iamdefinitelyahuman/brownie/tree/v1.4.0) - 2020-01-09
## [1.4.2](https://github.com/iamdefinitelyahuman/brownie/tree/v1.4.2) - 2020-01-10
### Added
- Add Ethereum Classic networks in `brownie-config.yaml`
- Accept `atlantis` and `agharta` as EVM ruleset options in `brownie-config.yaml`

### Changed
- Use Vyper version 0.1.0b16

### Fixed
- Create `~/.brownie/accounts` when `accounts` commandline interface is called

## [1.4.1](https://github.com/iamdefinitelyahuman/brownie/tree/v1.4.1) - 2020-01-09
### Changed
- Do not install solc until required for compilation
- Adjust compiler config settings to be less Solidity-centric
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Brownie is a Python-based development and testing framework for smart contracts

## Features

* Full support for [Solidity](https://github.com/ethereum/solidity) (`>=0.4.22`) and [Vyper](https://github.com/vyperlang/vyper) (`0.1.0b-15`)
* Full support for [Solidity](https://github.com/ethereum/solidity) (`>=0.4.22`) and [Vyper](https://github.com/vyperlang/vyper) (`0.1.0-b16`)
* Contract testing via [pytest](https://github.com/pytest-dev/pytest), including trace-based coverage evaluation
* Powerful debugging tools, including python-style tracebacks and custom error strings
* Built-in console for quick project interaction
Expand Down
2 changes: 1 addition & 1 deletion brownie/_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from brownie.exceptions import ProjectNotFound
from brownie.utils import color, notify

__version__ = "1.4.1"
__version__ = "1.4.2"

__doc__ = """Usage: brownie <command> [<args>...] [options <args>]
Expand Down
2 changes: 1 addition & 1 deletion docs/compile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Setting the Compiler Version

.. note::

Brownie supports Solidity versions ``>=0.4.22`` and Vyper version ``0.1.0-b15``.
Brownie supports Solidity versions ``>=0.4.22`` and Vyper version ``0.1.0-b16``.

If a compiler version is set in the configuration file, all contracts in the project are compiled using that version. It is installed automatically if not already present. The version should be given as a string in the format ``0.x.x``.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def setup(sphinx):
# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "v1.4.1"
release = "v1.4.2"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ pyyaml>=5.1.0,<6.0.0
requests>=2.22.0,<3.0.0
semantic-version>=2.8.2,<3.0.0
tqdm==4.41.0
vyper==0.1.0b15
vyper==0.1.0b16
web3==5.3.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.1
current_version = 1.4.2

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.4.1", # don't change this manually, use bumpversion instead
version="1.4.2", # don't change this manually, use bumpversion instead
license="MIT",
description="A Python framework for Ethereum smart contract deployment, testing and interaction.", # noqa: E501
long_description=long_description,
Expand Down

0 comments on commit 8cf919b

Please sign in to comment.