Skip to content

Commit

Permalink
release: update changelog, bump verison to v1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Mar 18, 2021
1 parent e5e9633 commit 9ebb040
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.14.0](https://github.com/eth-brownie/brownie/tree/v1.14.0) - 2021-03-18
### Added
- Generalized RPC logic allowing (limited) use of `geth --dev` as a local test network ([#998](https://github.com/eth-brownie/brownie/pull/998))
- RPC call caching via web3 middleware ([#997](https://github.com/eth-brownie/brownie/pull/997))
- Allow tests to target project outside the current working directory via `--brownie-project` cli flag ([#996](https://github.com/eth-brownie/brownie/pull/996))
- Add BSC mainnet and fork-mode to default networks ([#961](https://github.com/eth-brownie/brownie/pull/961))

### Changed
- `export BROWNIE_LIB=1` to install brownie with soft pins. Also ensured hard pins for all dependencies are set. ([#993](https://github.com/eth-brownie/brownie/pull/993))

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.4"
__version__ = "1.14.0"

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.4
current_version = 1.14.0

[bumpversion:file:setup.py]

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
#!/usr/bin/python3
import os
import sys

from setuptools import find_packages, setup

with open("README.md", "r") as fh:
long_description = fh.read()

if os.environ.get("BROWNIE_LIB", "0") == "1":
if sys.platform == 'windows':
if sys.platform == "windows":
requirements_filename = "requirements-windows.in"
else:
requirements_filename = "requirements.in"
else:
if sys.platform == 'windows':
if sys.platform == "windows":
requirements_filename = "requirements-windows.txt"
else:
requirements_filename = "requirements.txt"
Expand All @@ -23,7 +24,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.13.4", # don't change this manually, use bumpversion instead
version="1.14.0", # 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 9ebb040

Please sign in to comment.