From 440e9cee0b27f8045bd65c06b5ee821b433a2a4d Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Wed, 5 Jan 2022 11:10:48 +0100 Subject: [PATCH] chore: Prepare 0.40.2 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++++ setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 531895bc7..5a4acd314 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.40.1 +current_version = 0.40.2 commit = True tag = False diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d11ecae..8d9c26640 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ Documents changes that result in: - API changes in the package (externally used constants, externally used utilities and scripts) - important bug fixes between releases +## [0.40.2] + +- [#1584](https://github.com/raiden-network/raiden-contracts/pull/1584) Upgrade `web3` and `eth-tester` dependencies + ## [0.40.1] - [#1576](https://github.com/raiden-network/raiden-contracts/pull/1576) Add missing `mypy_extensions` requirement diff --git a/setup.py b/setup.py index 4a670eeca..da99cd50e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools.command.build_py import build_py DESCRIPTION = "Raiden contracts library and utilities" -VERSION = "0.40.1" +VERSION = "0.40.2" def read_requirements(path: str) -> List[str]: