mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 18:44:20 +01:00
bump to 0.18.0 (#812)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user