Skip to content

Commit c856643

Browse files
authored
bump to 0.18.0 (#812)
1 parent 4a4b7f7 commit c856643

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ This command runs the mint on your local computer. Skip this step if you want to
177177
## Docker
178178

179179
```
180-
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
180+
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
181181
```
182182

183183
## From this repository

cashu/core/settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
env = Env()
1010

11-
VERSION = "0.17.0"
11+
VERSION = "0.18.0"
1212

1313

1414
def find_env_file():
@@ -206,6 +206,7 @@ class MintInformation(CashuSettings):
206206
mint_info_urls: List[str] = Field(default=None)
207207
mint_info_tos_url: str = Field(default=None)
208208

209+
209210
class MintManagementRPCSettings(MintSettings):
210211
mint_rpc_server_enable: bool = Field(default=False)
211212
mint_rpc_server_ca: str = Field(default=None)
@@ -215,6 +216,7 @@ class MintManagementRPCSettings(MintSettings):
215216
mint_rpc_server_port: int = Field(default=8086)
216217
mint_rpc_server_mutual_tls: bool = Field(default=True)
217218

219+
218220
class WalletSettings(CashuSettings):
219221
tor: bool = Field(default=False)
220222
socks_host: str = Field(default=None) # deprecated

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cashu"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
description = "Ecash wallet and mint"
55
authors = ["calle <callebtc@protonmail.com>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name="cashu",
16-
version="0.17.0",
16+
version="0.18.0",
1717
description="Ecash wallet and mint",
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)