From 5d5dc5d7d16e51fd224fb649375335269c3dfefd Mon Sep 17 00:00:00 2001 From: Fernando Cezar Date: Fri, 24 Sep 2021 17:58:59 +0200 Subject: [PATCH] Release 0.18.0 (#1079) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * add release note * Bump version: 0.17.1 → 0.18.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 3 +++ Dockerfile | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 923b9299..7507129d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.1 +current_version = 0.18.0 commit = True tag = False diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e116b7a..388a078d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +### 0.18.0 (2021-09-24) +* Add cache to `to_address_checksum` function + ### 0.17.1 (2021-09-20) * Fix service URL registration when `ping` is not installed (https://github.com/raiden-network/raiden-services/issues/1065) diff --git a/Dockerfile b/Dockerfile index b4c2ea45..6dc394a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.7 -LABEL Name=raiden-services Version=0.17.1 Maintainer="Raiden Network Team " +LABEL Name=raiden-services Version=0.18.0 Maintainer="Raiden Network Team " EXPOSE 6000 WORKDIR /services diff --git a/docs/conf.py b/docs/conf.py index c5c7a0d9..5251906c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '0.17.1' +release = '0.18.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index e5757765..0aa69c9e 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def read_requirements(path: str) -> List[str]: setup( name="raiden-services", - version="0.17.1", + version="0.18.0", license="MIT", description=DESCRIPTION, long_description=README,