Skip to content

Commit

Permalink
chore: update changelog, bump version to v1.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Apr 26, 2020
1 parent 4e16101 commit f1576f9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.7.5](https://github.com/iamdefinitelyahuman/brownie/tree/v1.7.5) - 2020-04-26
### Fixed
- Importing keystore files from CLI without `.json` suffix ([#448](https://github.com/iamdefinitelyahuman/brownie/pull/448))
- Properly display reports in GUI ([#449](https://github.com/iamdefinitelyahuman/brownie/pull/449))


## [1.7.4](https://github.com/iamdefinitelyahuman/brownie/tree/v1.7.4) - 2020-04-25
### Fixed
- Do not repeat queries for unverified source ([#445](https://github.com/iamdefinitelyahuman/brownie/pull/442))
- `KeyError` when using `autofetch_sources` ([#445](https://github.com/iamdefinitelyahuman/brownie/pull/442))
- Do not repeat queries for unverified source ([#445](https://github.com/iamdefinitelyahuman/brownie/pull/445))
- `KeyError` when using `autofetch_sources` ([#445](https://github.com/iamdefinitelyahuman/brownie/pull/445))
- "No owner" issue with contract call during coverage evaluation ([#446](https://github.com/iamdefinitelyahuman/brownie/pull/446))

## [1.7.3](https://github.com/iamdefinitelyahuman/brownie/tree/v1.7.3) - 2020-04-23
Expand Down
9 changes: 5 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Development

To start development for Brownie you should begin by cloning the repo.
To start development for Brownie you should begin by cloning the repo. We highly recommend using [`venv`](https://docs.python.org/3/library/venv.html) and installing into a fresh virtual environment.

```bash
git clone https://github.com/iamdefinitelyahuman/brownie.git
Expand All @@ -14,15 +14,16 @@ pip install -r requirements-dev.txt

## Pre-Commit Hooks

We use [pre-commit](https://pre-commit.com/) hooks to ensure consistent formatting among contributors.
We use [`pre-commit`](https://pre-commit.com/) hooks to simplify linting and ensure consistent formatting among contributors. Use of `pre-commit` is not a requirement, but is highly recommended.

Install pre-commit locally from the brownie root folder:
Install `pre-commit` locally from the brownie root folder:

```bash
pip install pre-commit
pre-commit install
```

Commiting will now automatically run the local pre-commit hooks, ensuring that your commit passes our lint checks.
Commiting will now automatically run the local hooks and ensure that your commit passes all lint checks.

## Pull Requests

Expand Down
2 changes: 1 addition & 1 deletion brownie/_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from brownie.utils import color, notify
from brownie.utils.docopt import docopt, levenshtein_norm

__version__ = "1.7.4"
__version__ = "1.7.5"

__doc__ = """Usage: brownie <command> [<args>...] [options <args>]
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.7.4
current_version = 1.7.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 @@ -11,7 +11,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.7.4", # don't change this manually, use bumpversion instead
version="1.7.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 f1576f9

Please sign in to comment.