Skip to content

Commit

Permalink
Merge pull request #1060 from eth-brownie/v1.14.5
Browse files Browse the repository at this point in the history
v1.14.5
  • Loading branch information
iamdefinitelyahuman authored Apr 16, 2021
2 parents 7e54a6a + 9c8399c commit 7e6f362
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.14.5](https://github.com/eth-brownie/brownie/tree/v1.14.5) - 2021-04-16
### Added

- Added documentation detailing how private Github repositories can be used as a package installation source.
- Add passphrase kwarg to `Account.from_mnemonic` ([#1050](https://github.com/eth-brownie/brownie/pull/1050))

### Fixed
### Changed
- Include `chainId` field when signing transactions ([#1056](https://github.com/eth-brownie/brownie/pull/1056))

### Fixed
- Fixed a formatting issue on the new [environment variable section](https://eth-brownie.readthedocs.io/en/stable/config.html?highlight=POSIX-style#variable-expansion) ([#1038](https://github.com/eth-brownie/brownie/pull/1038))
- Fixed Github package installation failing for private repositories ([#1055](https://github.com/eth-brownie/brownie/pull/1055)).
- Adjusted Github API token error message so that it correctly emits when auth failure occurs ([#1052](https://github.com/eth-brownie/brownie/pull/1052))

- Remove `__ret_value__` prior to writing console output ([#1057](https://github.com/eth-brownie/brownie/pull/1057))
- Handle missing contract when generating transaction receipt ([#1058](https://github.com/eth-brownie/brownie/pull/1058))
- `StopIteration` issues within receipts ([#1059](https://github.com/eth-brownie/brownie/pull/1059))
- Do not cache `eth_newBlockFilter` ([#1061](https://github.com/eth-brownie/brownie/pull/1061))

## [1.14.4](https://github.com/eth-brownie/brownie/tree/v1.14.4) - 2021-04-05
### Added
Expand Down
2 changes: 1 addition & 1 deletion brownie/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from brownie._expansion import expand_posix_vars
from brownie._singleton import _Singleton

__version__ = "1.14.4"
__version__ = "1.14.5"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ eth-account==0.5.4
# via
# -r requirements.in
# web3
eth-event==1.2.1
eth-event==1.2.3
# via -r requirements.in
eth-hash[pycryptodome]==0.3.1
# via
Expand Down Expand Up @@ -336,7 +336,7 @@ virtualenv==20.4.3
# via tox
vvm==0.1.0
# via -r requirements.in
vyper==0.2.11
vyper==0.2.12
# via -r requirements.in
wcwidth==0.2.5
# via prompt-toolkit
Expand Down
4 changes: 2 additions & 2 deletions requirements-windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ eth-account==0.5.4
# via
# -r requirements.in
# web3
eth-event==1.2.1
eth-event==1.2.3
# via -r requirements.in
eth-hash[pycryptodome]==0.3.1
# via
Expand Down Expand Up @@ -218,7 +218,7 @@ varint==1.0.2
# via multiaddr
vvm==0.1.0
# via -r requirements.in
vyper==0.2.11
vyper==0.2.12
# via -r requirements.in
wcwidth==0.2.5
# via prompt-toolkit
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ eth-account==0.5.2
# via
# -r requirements.in
# web3
eth-event==1.2.1
eth-event==1.2.3
# via -r requirements.in
eth-hash[pycryptodome]==0.2.0
# via
Expand Down Expand Up @@ -228,7 +228,7 @@ varint==1.0.2
# via multiaddr
vvm==0.1.0
# via -r requirements.in
vyper==0.2.11
vyper==0.2.12
# via -r requirements.in
wcwidth==0.2.5
# via prompt-toolkit
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.14.4
current_version = 1.14.5

[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 @@ -24,7 +24,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.14.4", # don't change this manually, use bumpversion instead
version="1.14.5", # 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 7e6f362

Please sign in to comment.