Skip to content

Commit

Permalink
release: update changelog, bump version to v1.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Nov 7, 2021
1 parent ca04726 commit 768686f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,7 +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.17.1](https://github.com/eth-brownie/brownie/tree/v1.17.1) - 2021-11-07
### Added
- Add support for `ARBISCAN_TOKEN` env var ([#1319](https://github.com/eth-brownie/brownie/pull/1319))
- Add Avalanche to default networks and support for snowtrace ([#1332](https://github.com/eth-brownie/brownie/pull/1332))

### Changed
- Transactions are rebroadcasted until they appear in the mempool ([#1327](https://github.com/eth-brownie/brownie/pull/1327))
- Avoid caching on chains with short blocktimes ([#1297](https://github.com/eth-brownie/brownie/pull/1297))

### Fixed
- Match single/double quote paths in source verification ([#1323](https://github.com/eth-brownie/brownie/pull/1323))
- Change use of `getcontext()` ([#1310](https://github.com/eth-brownie/brownie/pull/1310))
- IPv6-aware Hardhat ([#1309](https://github.com/eth-brownie/brownie/pull/1309))

## [1.17.0](https://github.com/eth-brownie/brownie/tree/v1.17.0) - 2021-10-13
### Added
Expand Down
2 changes: 1 addition & 1 deletion brownie/_config.py
Expand Up @@ -19,7 +19,7 @@
from brownie._expansion import expand_posix_vars
from brownie._singleton import _Singleton

__version__ = "1.17.0"
__version__ = "1.17.1"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.17.0
current_version = 1.17.1

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -24,7 +24,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.17.0", # don't change this manually, use bumpversion instead
version="1.17.1", # 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 768686f

Please sign in to comment.