From 78a6f907f093986798402e8e6bb493120fb6d266 Mon Sep 17 00:00:00 2001 From: Jeremy Mawson Date: Wed, 26 Jul 2023 08:55:56 +1000 Subject: [PATCH] Prepare for release 0.0.6. --- CHANGELOG.md | 57 ++++++++++++++++++++++++++++------------------- README.md | 3 +-- RELEASING.md | 4 ++-- gradle.properties | 2 +- 4 files changed, 38 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99e4b42..d285d85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,33 +1,44 @@ -Change Log -========== +# Change Log -Next release ----------------------------- -* Add support for Zap receipts as part of NIP-57 -* Add support for serializing and deserializing events -Version 0.0.5 *(2023-05-21)* ----------------------------- +## [Unreleased] -* Add support for Zap requests as part of NIP-57 -* Add support for event deletion request events. -* Release nostr-sdk-test package, which provides kotest-property Arb(itrary) builders for testing applications using nostr-sdk. -Version 0.0.4 *(2023-05-18)* ----------------------------- +## [0.0.6] - 2023-07-26 -* Add ability to filter notes by hashtag -* Add event signature validation -* Tag type, replacing raw string usage +### Added +* Support for Zap receipts as part of NIP-57 (Jose Mateo) +* Support for serializing and deserializing events (Jose Mateo) -Version 0.0.3 *(2023-04-12)* ----------------------------- -* NIP-25 Reactions -* Fix: Better maven artifact name +## [0.0.5] - 2023-05-21 +### Added +* Support for Zap requests as part of NIP-57 (Hugo MΓΌller-Downing) +* Support for event deletion request events (Jem Mawson) +* Release nostr-sdk-test package, which provides kotest-property Arb(itrary) builders for testing applications using nostr-sdk (Jem Mawson) + + +## [0.0.4] - 2023-05-18 + +### Added +* Ability to filter notes by hashtag (Jose Mateo) +* Event signature validation (Jem Mawson) +* Tag type, replacing raw string usage (Jem Mawson) + + +## [0.0.3] - 2023-04-12 + +### Added +* NIP-25 Reactions (Jem Mawson) + +### Fixed +* Better maven artifact name (Jem Mawson) + + +## [0.0.2] - 2023-03-25 + +### Added +* Initial release with support for NIPs 1, 4, 15, 19 & 20 + a rudimentary client. (Jem Mawson) -Version 0.0.2 *(2023-03-25)* ----------------------------- -* Initial release with support for NIPs 1, 4, 15, 19 & 20 + a rudimentary client. diff --git a/README.md b/README.md index 59055db..de529d8 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,7 @@ at [https://cashapp.github.io/nostrino](https://cashapp.github.io/nostrino) | πŸ—… | [50 - Keywords filter](https://github.com/nostr-protocol/nips/blob/master/50.md) | | πŸ—… | [56 - Reporting](https://github.com/nostr-protocol/nips/blob/master/56.md) | | πŸ—… | [65 - Relay List Metadata](https://github.com/nostr-protocol/nips/blob/master/65.md) | -| βœ… | [57 - Lightning Zaps](https://github.com/nostr-protocol/nips/blob/master/57.md) | - +| βœ… | [57 - Lightning Zaps](https://github.com/nostr-protocol/nips/blob/master/57.md) | ## Building diff --git a/RELEASING.md b/RELEASING.md index c31f843..85a78ea 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -16,8 +16,8 @@ Releasing git checkout -b release-$RELEASE_VERSION ``` -3. Update `CHANGELOG.md` with changes since the last release. This - step is manual and somewhat tedious. Follow the existing `CHANGELOG.md` format. +3. Update `CHANGELOG.md` with changes since the last release. Follow the existing `CHANGELOG.md` format, which is +derived from [this guide](https://keepachangelog.com/en/1.0.0/) 4. Update documentation and Gradle properties with `RELEASE_VERSION` diff --git a/gradle.properties b/gradle.properties index 8aa6816..ab2f1d7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=app.cash.nostrino -VERSION_NAME=0.0.6-SNAPSHOT +VERSION_NAME=0.0.6 POM_URL=https://github.com/cashapp/nostrino/ POM_SCM_URL=https://github.com/cashapp/nostrino/ POM_SCM_CONNECTION=scm:git:git://github.com/cashapp/nostrino.git