From 2a4271e35c145790941412ac7641dd6dc3964c77 Mon Sep 17 00:00:00 2001 From: Carl Beekhuizen Date: Thu, 1 Oct 2020 15:51:13 +0200 Subject: [PATCH] Bump version number for hotfix release --- eth2deposit/settings.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eth2deposit/settings.py b/eth2deposit/settings.py index 4481fe3..3badda5 100644 --- a/eth2deposit/settings.py +++ b/eth2deposit/settings.py @@ -1,7 +1,7 @@ from typing import Dict, NamedTuple -DEPOSIT_CLI_VERSION = "0.4.0" +DEPOSIT_CLI_VERSION = "0.4.1" class BaseChainSetting(NamedTuple): diff --git a/setup.py b/setup.py index edc1725..e4588f6 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ THIS IS A STUB FOR RUNNING THE APP setup( name="eth2deposit", - version='0.4.0', + version='0.4.1', py_modules=["eth2deposit"], packages=find_packages(exclude=('tests', 'docs')), python_requires=">=3.7,<4",