diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 377e88a..5a95fbf 100644 --- a/cashu/core/settings.py +++ b/cashu/core/settings.py @@ -46,4 +46,4 @@ LNBITS_ENDPOINT = env.str("LNBITS_ENDPOINT", default=None) LNBITS_KEY = env.str("LNBITS_KEY", default=None) MAX_ORDER = 64 -VERSION = "0.2.4" +VERSION = "0.2.5" diff --git a/cashu/mint/router.py b/cashu/mint/router.py index 3888514..fec009f 100644 --- a/cashu/mint/router.py +++ b/cashu/mint/router.py @@ -5,9 +5,9 @@ from secp256k1 import PublicKey from cashu.core.base import ( CashuError, + CheckFeesRequest, CheckFeesResponse, CheckRequest, - CheckFeesRequest, GetMeltResponse, GetMintResponse, MeltRequest, diff --git a/pyproject.toml b/pyproject.toml index c16d54e..e20d5f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.2.4" +version = "0.2.5" description = "Ecash wallet and mint." authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index 050b1d5..27918cc 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = cashu.wallet.cli:cli"]} setuptools.setup( name="cashu", - version="0.2.4", + version="0.2.5", description="Ecash wallet and mint with Bitcoin Lightning support", long_description=long_description, long_description_content_type="text/markdown",