From c681f93331410b3905a2d6dfe19eb8e71c9f1e50 Mon Sep 17 00:00:00 2001 From: Carl Beekhuizen Date: Tue, 17 Nov 2020 17:14:34 +0100 Subject: [PATCH] version bump -> v1.1.0 --- 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 a1c484dc..35bde8aa 100644 --- a/eth2deposit/settings.py +++ b/eth2deposit/settings.py @@ -1,7 +1,7 @@ from typing import Dict, NamedTuple -DEPOSIT_CLI_VERSION = '1.0.0' +DEPOSIT_CLI_VERSION = '1.1.0' class BaseChainSetting(NamedTuple): diff --git a/setup.py b/setup.py index 5c9c89e0..efe66cc1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="eth2deposit", - version='1.0.0', + version='1.1.0', py_modules=["eth2deposit"], packages=find_packages(exclude=('tests', 'docs')), python_requires=">=3.7,<4",