mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 02:24:20 +01:00
Bump to 0.14.0-rc1 (#329)
* bump to 0.14.0 * bump python version * use python 3.10.4 in check workflow
This commit is contained in:
4
.github/workflows/checks.yml
vendored
4
.github/workflows/checks.yml
vendored
@@ -7,7 +7,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9"]
|
||||
python-version: ["3.10.4"]
|
||||
poetry-version: ["1.5.1"]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
@@ -28,7 +28,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9"]
|
||||
python-version: ["3.10.4"]
|
||||
poetry-version: ["1.5.1"]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@@ -8,7 +8,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
python-version: ["3.9.13"]
|
||||
python-version: ["3.10.4"]
|
||||
poetry-version: ["1.5.1"]
|
||||
steps:
|
||||
- name: Checkout repository and submodules
|
||||
|
||||
@@ -60,7 +60,7 @@ curl https://pyenv.run | bash
|
||||
pyenv init
|
||||
|
||||
# restart your shell (or source your .rc file), then install python:
|
||||
pyenv install 3.9.13
|
||||
pyenv install 3.10.4
|
||||
|
||||
# install poetry
|
||||
curl -sSL https://install.python-poetry.org | python3 -
|
||||
@@ -72,7 +72,7 @@ source ~/.bashrc
|
||||
# install cashu
|
||||
git clone https://github.com/callebtc/cashu.git --recurse-submodules
|
||||
cd cashu
|
||||
pyenv local 3.9.13
|
||||
pyenv local 3.10.4
|
||||
poetry install
|
||||
```
|
||||
|
||||
@@ -114,7 +114,7 @@ cashu info
|
||||
|
||||
Returns:
|
||||
```bash
|
||||
Version: 0.13.0
|
||||
Version: 0.14.0
|
||||
Debug: False
|
||||
Cashu dir: /home/user/.cashu
|
||||
Wallet: wallet
|
||||
|
||||
@@ -8,7 +8,7 @@ from pydantic import BaseSettings, Extra, Field
|
||||
|
||||
env = Env()
|
||||
|
||||
VERSION = "0.13.0"
|
||||
VERSION = "0.14.0"
|
||||
|
||||
|
||||
def find_env_file():
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "cashu"
|
||||
version = "0.13.0"
|
||||
version = "0.14.0"
|
||||
description = "Ecash wallet and mint"
|
||||
authors = ["calle <callebtc@protonmail.com>"]
|
||||
license = "MIT"
|
||||
|
||||
2
setup.py
2
setup.py
@@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = cashu.wallet.cli.cli:cli"]}
|
||||
|
||||
setuptools.setup(
|
||||
name="cashu",
|
||||
version="0.13.0",
|
||||
version="0.14.0",
|
||||
description="Ecash wallet and mint for Bitcoin Lightning",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
||||
Reference in New Issue
Block a user