Skip to content

Commit

Permalink
Merge pull request #983 from eth-brownie/v1.13.3
Browse files Browse the repository at this point in the history
v1.13.3
  • Loading branch information
iamdefinitelyahuman authored Mar 7, 2021
2 parents f9c9cd8 + 269589e commit b4c33a9
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.11.0
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.8
uses: actions/setup-python@v2
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.11.0
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.8
uses: actions/setup-python@v2
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.11.0
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.8
uses: actions/setup-python@v2
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.11.0
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.7
uses: actions/setup-python@v2
Expand All @@ -191,7 +191,7 @@ jobs:
run: pip install tox

- name: Run Tox
run: tox -e py36
run: tox -e py37

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
Expand All @@ -216,7 +216,7 @@ jobs:
uses: actions/setup-node@v1

- name: Install Ganache
run: npm install -g ganache-cli@6.11.0
run: npm install -g ganache-cli@6.12.2

- name: Setup Python 3.6
uses: actions/setup-python@v2
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,15 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

## [1.13.3](https://github.com/eth-brownie/brownie/tree/v1.13.3) - 2021-03-08
### Added
- Option to choose console editting mode ([#970](https://github.com/eth-brownie/brownie/pull/970))

### Fixed
- Strip whitespace from `address_or_alias` ([#978](https://github.com/eth-brownie/brownie/pull/978))
- Automatic source code verification on BscScan ([#962](https://github.com/eth-brownie/brownie/pull/962))
- Heuristic for nonpayable function revert in Vyper `v0.2.11` ([#979](https://github.com/eth-brownie/brownie/pull/979))

## [1.13.2](https://github.com/eth-brownie/brownie/tree/v1.13.2) - 2021-02-28
### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Brownie is a Python-based development and testing framework for smart contracts
## Dependencies

* [python3](https://www.python.org/downloads/release/python-368/) version 3.6 or greater, python3-dev
* [ganache-cli](https://github.com/trufflesuite/ganache-cli) - tested with version [6.11.0](https://github.com/trufflesuite/ganache-cli/releases/tag/v6.11.0)
* [ganache-cli](https://github.com/trufflesuite/ganache-cli) - tested with version [6.12.2](https://github.com/trufflesuite/ganache-cli/releases/tag/v6.12.2)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion brownie/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from brownie._singleton import _Singleton

__version__ = "1.13.2"
__version__ = "1.13.3"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Dependencies
Brownie has the following dependencies:

* `python3 <https://www.python.org/downloads/release/python-368/>`_ version 3.6 or greater, python3-dev
* `ganache-cli <https://github.com/trufflesuite/ganache-cli>`_ - tested with version `6.11.0 <https://github.com/trufflesuite/ganache-cli/releases/tag/v6.11.0>`_
* `ganache-cli <https://github.com/trufflesuite/ganache-cli>`_ - tested with version `6.12.2 <https://github.com/trufflesuite/ganache-cli/releases/tag/v6.12.2>`_

.. _install-tk:

Expand Down
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.13.2
current_version = 1.13.3

[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.13.2", # don't change this manually, use bumpversion instead
version="1.13.3", # 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 b4c33a9

Please sign in to comment.