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:
callebtc
2023-09-24 19:10:25 +02:00
committed by GitHub
parent 2d3a9234f5
commit 64805e4a9a
6 changed files with 9 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.9"] python-version: ["3.10.4"]
poetry-version: ["1.5.1"] poetry-version: ["1.5.1"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.9"] python-version: ["3.10.4"]
poetry-version: ["1.5.1"] poetry-version: ["1.5.1"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@@ -8,7 +8,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
python-version: ["3.9.13"] python-version: ["3.10.4"]
poetry-version: ["1.5.1"] poetry-version: ["1.5.1"]
steps: steps:
- name: Checkout repository and submodules - name: Checkout repository and submodules

View File

@@ -60,7 +60,7 @@ curl https://pyenv.run | bash
pyenv init pyenv init
# restart your shell (or source your .rc file), then install python: # restart your shell (or source your .rc file), then install python:
pyenv install 3.9.13 pyenv install 3.10.4
# install poetry # install poetry
curl -sSL https://install.python-poetry.org | python3 - curl -sSL https://install.python-poetry.org | python3 -
@@ -72,7 +72,7 @@ source ~/.bashrc
# install cashu # install cashu
git clone https://github.com/callebtc/cashu.git --recurse-submodules git clone https://github.com/callebtc/cashu.git --recurse-submodules
cd cashu cd cashu
pyenv local 3.9.13 pyenv local 3.10.4
poetry install poetry install
``` ```
@@ -114,7 +114,7 @@ cashu info
Returns: Returns:
```bash ```bash
Version: 0.13.0 Version: 0.14.0
Debug: False Debug: False
Cashu dir: /home/user/.cashu Cashu dir: /home/user/.cashu
Wallet: wallet Wallet: wallet

View File

@@ -8,7 +8,7 @@ from pydantic import BaseSettings, Extra, Field
env = Env() env = Env()
VERSION = "0.13.0" VERSION = "0.14.0"
def find_env_file(): def find_env_file():

View File

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

View File

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