Skip to content

Commit

Permalink
release: update deps, changelog, bump version to v1.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Oct 16, 2022
1 parent b59d0d7 commit ca304da
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 19 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ 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.19.2](https://github.com/eth-brownie/brownie/tree/v1.19.2) - 2022-10-16
### Added
- Support for remappings in `from_explorer` ([#1596](https://github.com/eth-brownie/brownie/pull/1596))

### Fixed
- Handle Vyper immutables ([#1623](https://github.com/eth-brownie/brownie/pull/1623))
- Correct Moonscan API for Moonbase Alpha testnet([#1611](https://github.com/eth-brownie/brownie/pull/1611))

## [1.19.1](https://github.com/eth-brownie/brownie/tree/v1.19.1) - 2022-08-07
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.19.1"
__version__ = "1.19.2"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
32 changes: 16 additions & 16 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile requirements.in
#
aiohttp==3.8.1
aiohttp==3.8.3
# via web3
aiosignal==1.2.0
# via aiohttp
Expand All @@ -22,11 +22,11 @@ base58==2.1.1
# via multiaddr
bitarray==2.6.0
# via eth-account
black==22.6.0
black==22.10.0
# via -r requirements.in
certifi==2022.6.15
certifi==2022.9.24
# via requests
charset-normalizer==2.1.0
charset-normalizer==2.1.1
# via
# aiohttp
# requests
Expand Down Expand Up @@ -95,7 +95,7 @@ frozenlist==1.3.1
# via
# aiohttp
# aiosignal
hexbytes==0.2.2
hexbytes==0.2.3
# via
# -r requirements.in
# eip712
Expand All @@ -105,7 +105,7 @@ hexbytes==0.2.2
# web3
hypothesis==6.27.3
# via -r requirements.in
idna==3.3
idna==3.4
# via
# requests
# yarl
Expand Down Expand Up @@ -141,17 +141,17 @@ packaging==21.3
# via pytest
parsimonious==0.8.1
# via eth-abi
pathspec==0.9.0
pathspec==0.10.1
# via black
platformdirs==2.5.2
# via black
pluggy==1.0.0
# via pytest
prompt-toolkit==3.0.30
prompt-toolkit==3.0.31
# via -r requirements.in
protobuf==3.20.1
protobuf==3.19.5

This comment has been minimized.

Copy link
@poolpitako

poolpitako Oct 18, 2022

Contributor

why the downgrade?

# via web3
psutil==5.9.1
psutil==5.9.2
# via -r requirements.in
py==1.11.0
# via
Expand All @@ -168,7 +168,7 @@ pycryptodome==3.15.0
# eth-hash
# eth-keyfile
# vyper
pygments==2.12.0
pygments==2.13.0
# via
# -r requirements.in
# pygments-lexer-solidity
Expand Down Expand Up @@ -212,7 +212,7 @@ rlp==2.0.1
# -r requirements.in
# eth-account
# eth-rlp
semantic-version==2.8.5
semantic-version==2.10.0
# via
# -r requirements.in
# py-solc-x
Expand All @@ -234,19 +234,19 @@ tomli==2.0.1
# via black
toolz==0.12.0
# via cytoolz
tqdm==4.64.0
tqdm==4.64.1
# via -r requirements.in
urllib3==1.26.11
urllib3==1.26.12
# via requests
varint==1.0.2
# via multiaddr
vvm==0.1.0
# via -r requirements.in
vyper==0.3.6
vyper==0.3.7
# via -r requirements.in
wcwidth==0.2.5
# via prompt-toolkit
web3==5.30.0
web3==5.31.1
# via -r requirements.in
websockets==9.1
# via web3
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.19.1
current_version = 1.19.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 @@ -24,7 +24,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.19.1", # don't change this manually, use bumpversion instead
version="1.19.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 ca304da

Please sign in to comment.