bump to 0.18.0 (#812)

This commit is contained in:
callebtc
2025-10-28 12:48:36 +01:00
committed by GitHub
parent 4a4b7f79f7
commit c8566437f9
4 changed files with 6 additions and 4 deletions

View File

@@ -177,7 +177,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.17.0 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.18.0 poetry run mint
```
## From this repository

View File

@@ -8,7 +8,7 @@ from pydantic import BaseSettings, Extra, Field
env = Env()
VERSION = "0.17.0"
VERSION = "0.18.0"
def find_env_file():
@@ -206,6 +206,7 @@ class MintInformation(CashuSettings):
mint_info_urls: List[str] = Field(default=None)
mint_info_tos_url: str = Field(default=None)
class MintManagementRPCSettings(MintSettings):
mint_rpc_server_enable: bool = Field(default=False)
mint_rpc_server_ca: str = Field(default=None)
@@ -215,6 +216,7 @@ class MintManagementRPCSettings(MintSettings):
mint_rpc_server_port: int = Field(default=8086)
mint_rpc_server_mutual_tls: bool = Field(default=True)
class WalletSettings(CashuSettings):
tor: bool = Field(default=False)
socks_host: str = Field(default=None) # deprecated

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "cashu"
version = "0.17.0"
version = "0.18.0"
description = "Ecash wallet and mint"
authors = ["calle <callebtc@protonmail.com>"]
license = "MIT"

View File

@@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = cashu.wallet.cli.cli:cli"]}
setuptools.setup(
name="cashu",
version="0.17.0",
version="0.18.0",
description="Ecash wallet and mint",
long_description=long_description,
long_description_content_type="text/markdown",