Skip to content

Commit

Permalink
Merge pull request #977 from eth-brownie/v1.13.2
Browse files Browse the repository at this point in the history
v1.13.2
  • Loading branch information
iamdefinitelyahuman authored Feb 28, 2021
2 parents 455c4cc + 9156fc8 commit 3f55443
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,20 @@ 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.2](https://github.com/eth-brownie/brownie/tree/v1.13.2) - 2021-02-28
### Added
- Load installed packages via `project.load` ([#971](https://github.com/eth-brownie/brownie/pull/971))

### Changed
- `brownie run --interactive` enters the console with the namespace of the successfully executed function ([#976](https://github.com/eth-brownie/brownie/pull/976))

### Fixed
- Bump dependency version for [eth-event](https://github.com/iamdefinitelyahuman/eth-event) to [1.2.1](https://github.com/iamdefinitelyahuman/eth-event/releases/tag/v1.2.1) to mitigate the topic generation bug for events with dynamic/fixed size tuple array inputs ([#957](https://github.com/eth-brownie/brownie/pull/957))
- Iterate over network connections instead of local process list to support RPC-attaching with host-based and dockerized RPC clients.
- Resolve hostnames provided in host network field to the actual IP when RPC-attaching.
- Iterate over network connections instead of local process list to support RPC-attaching with host-based and dockerized RPC clients ([#972](https://github.com/eth-brownie/brownie/pull/972))
- Resolve hostnames provided in host network field to the actual IP when RPC-attaching ([#972](https://github.com/eth-brownie/brownie/pull/972))
- Correctly handle non-push instructions when parsing compiler outputs ([#952](https://github.com/eth-brownie/brownie/pull/952))
- Issue with implementation contract addresses pulled from `eth_getStorageAt` using Ganache `v6.12.2` ([#974](https://github.com/eth-brownie/brownie/pull/974))

## [1.13.1](https://github.com/eth-brownie/brownie/tree/v1.13.1) - 2021-01-31
### Fixed
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.1"
__version__ = "1.13.2"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
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.1
current_version = 1.13.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.13.1", # don't change this manually, use bumpversion instead
version="1.13.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 3f55443

Please sign in to comment.