From eccbf6f789aa1cdcc22308fd831275e8275670fa Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Tue, 9 Jul 2024 16:36:09 +0200 Subject: [PATCH] bump version to 0.16.0 (#573) --- cashu/core/settings.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 263d8e4..377ecf5 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.15.3" +VERSION = "0.16.0" def find_env_file(): diff --git a/pyproject.toml b/pyproject.toml index 712ec14..ca70055 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.15.3" +version = "0.16.0" description = "Ecash wallet and mint" authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index 420b167..4ab225a 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.15.3", + version="0.16.0", description="Ecash wallet and mint", long_description=long_description, long_description_content_type="text/markdown",