From 08d86b9a0037b07529411be8d01ab0b8748952c7 Mon Sep 17 00:00:00 2001 From: meherett Date: Wed, 25 Oct 2023 10:57:04 +0300 Subject: [PATCH] Bump: Python-BIP38 version to `0.3.0` package --- bip38/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bip38/__init__.py b/bip38/__init__.py index 4e8f4a3..200d683 100644 --- a/bip38/__init__.py +++ b/bip38/__init__.py @@ -24,7 +24,7 @@ ) __version__, __license__, __author__, __email__, __description__ = ( - "v0.2.1", + "v0.3.0", "MIT", "Meheret Tesfaye Batu", "meherett.batu@gmail.com", diff --git a/setup.py b/setup.py index c6cfe09..5dc0ccb 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="bip38", - version="v0.2.1", + version="v0.3.0", description="Python library for implementation of Bitcoin Improvement Proposal - 0038 / BIP38 protocol.", long_description=long_description, long_description_content_type="text/markdown", @@ -37,6 +37,7 @@ install_requires=requirements, extras_require={ "tests": [ + "coveralls>=3.3.1,<4", "pytest>=7.4.0,<8", "pyyaml>=6.0.1,<7" ],