diff --git a/README.md b/README.md index c87d2ff..ebcef43 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 77ff008..cc5f2e5 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.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 diff --git a/pyproject.toml b/pyproject.toml index be8bcc1..20bec5c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.17.0" +version = "0.18.0" description = "Ecash wallet and mint" authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index b7a16cd..af59b17 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.17.0", + version="0.18.0", description="Ecash wallet and mint", long_description=long_description, long_description_content_type="text/markdown",