From 68be68d48438ebe21c86201949bd9b0734e71c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Thu, 25 Apr 2024 16:27:11 +0200 Subject: [PATCH] chore: prepare release `0.5.0` --- .github/workflows/pypi.yaml | 2 +- CHANGELOG.md | 23 ++++++++--------------- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 17 deletions(-) diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 04ba893..f4ea084 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -2,7 +2,7 @@ name: release on: push: tags: - - "[0-9]+.[0-9]+.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+" jobs: build: runs-on: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cb6c62..ad37515 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Changelog All notable changes to this project will be documented in this file. +## [v0.5.0] - 2024-04-25 +- f92b14a feat: add withdraw execute to core and cli (#31) +- 10cb8a2 feat: add lnurlauth from lnbits (#28) +- 054bae3 chore: only run ci once on PR (#30) +- 65951bb feat: add lnaddress (#29) +- 9fb7e5e chore(deps): bump idna from 3.6 to 3.7 (#27) +- 61fe7e3 chore(deps-dev): bump black from 23.11.0 to 24.3.0 (#26) + ## [0.4.0] - 2023-07-05 - sanity release @@ -118,18 +126,3 @@ All notable changes to this project will be documented in this file. ### Added - Initial commit, based on `bech32` package. - `encode()` and `decode()` functions. - - -[unreleased]: /~https://github.com/lnbits/lnurl/compare/0.3.6...HEAD -[0.3.6]: /~https://github.com/lnbits/lnurl/compare/0.3.5...0.3.6 -[0.3.5]: /~https://github.com/lnbits/lnurl/compare/0.3.4...0.3.5 -[0.3.4]: /~https://github.com/lnbits/lnurl/compare/0.3.3...0.3.4 -[0.3.3]: /~https://github.com/lnbits/lnurl/compare/0.3.2...0.3.3 -[0.3.2]: /~https://github.com/lnbits/lnurl/compare/0.3.1...0.3.2 -[0.3.1]: /~https://github.com/lnbits/lnurl/compare/0.3.0...0.3.1 -[0.3.0]: /~https://github.com/lnbits/lnurl/compare/0.2.0...0.3.0 -[0.2.0]: /~https://github.com/lnbits/lnurl/compare/0.1.1...0.2.0 -[0.1.1]: /~https://github.com/lnbits/lnurl/compare/0.1.0...0.1.1 -[0.1.0]: /~https://github.com/lnbits/lnurl/compare/0.0.2...0.1.0 -[0.0.2]: /~https://github.com/lnbits/lnurl/compare/0.0.1...0.0.2 -[0.0.1]: /~https://github.com/lnbits/lnurl/releases/tag/0.0.1 diff --git a/pyproject.toml b/pyproject.toml index 2e43f34..20d5683 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lnurl" -version = "0.4.2" +version = "0.5.0" description = "LNURL implementation for Python." authors = ["Alan Bits "] license = "MIT"