Skip to content

Commit

Permalink
Bump to 0.14.0-rc1 (#329)
Browse files Browse the repository at this point in the history
* bump to 0.14.0

* bump python version

* use python 3.10.4 in check workflow
  • Loading branch information
callebtc authored Sep 24, 2023
1 parent 2d3a923 commit 64805e4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 -
Expand All @@ -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
```

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cashu/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

env = Env()

VERSION = "0.13.0"
VERSION = "0.14.0"


def find_env_file():
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cashu"
version = "0.13.0"
version = "0.14.0"
description = "Ecash wallet and mint"
authors = ["calle <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

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",
Expand Down

0 comments on commit 64805e4

Please sign in to comment.