From 205b5b9805f35ac199b47f144fb5045a2cfa417d Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Fri, 23 Jun 2023 20:04:49 +0200 Subject: [PATCH] bump version to 0.12.1 (#258) --- README.md | 2 +- cashu/core/settings.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46cd2c4..d5c1d82 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ cashu info Returns: ```bash -Version: 0.12.0 +Version: 0.12.1 Debug: False Cashu dir: /home/user/.cashu Wallet: wallet diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 6ead713..0e761f2 100644 --- a/cashu/core/settings.py +++ b/cashu/core/settings.py @@ -8,7 +8,7 @@ from pydantic import BaseSettings, Extra, Field env = Env() -VERSION = "0.12.0" +VERSION = "0.12.1" def find_env_file(): diff --git a/setup.py b/setup.py index 7542c3c..6a2a070 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = cashu.wallet.cli.cli:cli"]} setuptools.setup( name="cashu", - version="0.12.0", + version="0.12.1", description="Ecash wallet and mint for Bitcoin Lightning", long_description=long_description, long_description_content_type="text/markdown",