From 4ff9e6de5d6f86a576f6b47c03582bc5dc2e82cd Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Tue, 26 Mar 2024 22:01:09 +0100 Subject: [PATCH] bump version to 0.15.2 (#495) --- 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 1c0ee68..bc01df8 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.1" +VERSION = "0.15.2" def find_env_file(): diff --git a/pyproject.toml b/pyproject.toml index 0448d66..4c02790 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.15.1" +version = "0.15.2" description = "Ecash wallet and mint" authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index f8bac91..501f1e1 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.1", + version="0.15.2", description="Ecash wallet and mint", long_description=long_description, long_description_content_type="text/markdown",