diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e001f35e..429f2ede 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ecea6135..c99460b2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/README.md b/README.md index f9133897..614e3fbe 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/cashu/core/settings.py b/cashu/core/settings.py index 882288d4..f52c3eba 100644 --- a/cashu/core/settings.py +++ b/cashu/core/settings.py @@ -8,7 +8,7 @@ env = Env() -VERSION = "0.13.0" +VERSION = "0.14.0" def find_env_file(): diff --git a/pyproject.toml b/pyproject.toml index f5e34b2c..7a619ba1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.13.0" +version = "0.14.0" description = "Ecash wallet and mint" authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index d1d5ea6e..dd56a085 100644 --- a/setup.py +++ b/setup.py @@ -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",