From e851f42aee5dd91e951cb5bd428299a80e04ae3d Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Thu, 3 Mar 2022 15:55:22 -0500 Subject: [PATCH 1/2] Bump version to v0.0.6-SNAPSHOT --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4c49a3a..fbce3e1 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ rust_ext = RustExtension( setup( name = 'bdkpython', - version = '0.0.5', + version = '0.0.6-SNAPSHOT', description="The Python language bindings for the bitcoindevkit", long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', From 8b50e8d3ad578002b16ee08917877d4691d5e593 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 4 Mar 2022 08:53:11 -0500 Subject: [PATCH 2/2] Fix version numbering to comply with PEP 440 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fbce3e1..f55fe88 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ rust_ext = RustExtension( setup( name = 'bdkpython', - version = '0.0.6-SNAPSHOT', + version = '0.0.6.dev', description="The Python language bindings for the bitcoindevkit", long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',