From b9757a81497068e30cd0ff26e4e8ef5b3eb1f084 Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Tue, 26 Mar 2019 18:12:12 +0100 Subject: [PATCH 1/2] Update CHANGELOG for 0.16.0 --- CHANGELOG.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c308b6e6..066a6f81f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ Documents changes that result in: ## Unreleased -- Added contract_manager.get_contracts_deployed_info() that takes a module (`SERVICES`, `RAIDEN` or `ALL`) instead of `services:bool` -- Deprecated get_contracts_deployed() whose name sounded wrong and that had to be called twice. -- deploy script does not take --registry option anymore. Use --token-network-registry instead. +## [0.16.0](https://github.com/raiden-network/raiden-contracts/releases/tag/v0.16.0) - 2019-03-26 + +- [#775](https://github.com/raiden-network/raiden-contracts/pull/775) Added contract_manager.get_contracts_deployed_info() that takes a module (`SERVICES`, `RAIDEN` or `ALL`) instead of `services:bool` +- [#775](https://github.com/raiden-network/raiden-contracts/pull/775) Deprecated get_contracts_deployed() whose name sounded wrong and that had to be called twice. +- [#755](https://github.com/raiden-network/raiden-contracts/pull/755) deploy script does not take --registry option anymore. Use --token-network-registry instead. ## [0.15.0](https://github.com/raiden-network/raiden-contracts/releases/tag/v0.15.0) - 2019-03-19 From 29951b5e79d1cdbbb7cf12b132280307aa9b5eab Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Tue, 26 Mar 2019 18:12:40 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.15.0=20=E2=86=92=200.16?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7c20cc4b..5a48799d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.0 +current_version = 0.16.0 commit = True tag = True diff --git a/setup.py b/setup.py index c5f838e27..c77fd4991 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ DESCRIPTION = 'Raiden contracts library and utilities' -VERSION = '0.15.0' +VERSION = '0.16.0' def read_requirements(path: str) -> List[str]: