From b67ffd8705565fb2c2ee4464c39faa1e57344ae7 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:25:31 -0600 Subject: [PATCH] bump to 0.16.5 (#699) --- README.md | 2 +- cashu/core/settings.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a422b219..3934c63f 100644 --- a/README.md +++ b/README.md @@ -183,7 +183,7 @@ This command runs the mint on your local computer. Skip this step if you want to ## Docker ``` -docker run -d -p 3338:3338 --name nutshell -e MINT_BACKEND_BOLT11_SAT=FakeWallet -e MINT_LISTEN_HOST=0.0.0.0 -e MINT_LISTEN_PORT=3338 -e MINT_PRIVATE_KEY=TEST_PRIVATE_KEY cashubtc/nutshell:0.16.4 poetry run mint +docker run -d -p 3338:3338 --name nutshell -e MINT_BACKEND_BOLT11_SAT=FakeWallet -e MINT_LISTEN_HOST=0.0.0.0 -e MINT_LISTEN_PORT=3338 -e MINT_PRIVATE_KEY=TEST_PRIVATE_KEY cashubtc/nutshell:0.16.5 poetry run mint ``` ## From this repository diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 7ae0e133..0ff92fe1 100644 --- a/cashu/core/settings.py +++ b/cashu/core/settings.py @@ -8,7 +8,7 @@ env = Env() -VERSION = "0.16.4" +VERSION = "0.16.5" def find_env_file(): diff --git a/pyproject.toml b/pyproject.toml index cd2c45cf..271989bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.16.4" +version = "0.16.5" description = "Ecash wallet and mint" authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index 094ed4b2..61cf65f9 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setuptools.setup( name="cashu", - version="0.16.4", + version="0.16.5", description="Ecash wallet and mint", long_description=long_description, long_description_content_type="text/markdown",