From 79e7f303412bda3991ca32729f1f87e2a74ff765 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 29 Jul 2024 17:38:52 +0000 Subject: [PATCH] chore(release): 0.3.0 [skip ci] ## [0.3.0](https://github.com/hirosystems/runehook/compare/v0.2.2...v0.3.0) (2024-07-29) ### Features * add zeromq streaming and rollback support ([#8](https://github.com/hirosystems/runehook/issues/8)) ([c201bb5](https://github.com/hirosystems/runehook/commit/c201bb521b2fb30e4983d4f601ac7719907c2d26)) * address activity endpoint ([#18](https://github.com/hirosystems/runehook/issues/18)) ([c6b8bbe](https://github.com/hirosystems/runehook/commit/c6b8bbe683d1433a44147a474c389d9380959c23)) * number field in rune response ([#35](https://github.com/hirosystems/runehook/issues/35)) ([4485057](https://github.com/hirosystems/runehook/commit/4485057825dcf22bd4bb4bd667da0d9d2886e1ab)) ### Bug Fixes * cached output balance retrieval ([#16](https://github.com/hirosystems/runehook/issues/16)) ([b87b921](https://github.com/hirosystems/runehook/commit/b87b9212ec1e4addd394dc7af8e3e94c447d4487)) * default output selection without a runestone ([#23](https://github.com/hirosystems/runehook/issues/23)) ([016583c](https://github.com/hirosystems/runehook/commit/016583c69d559ff6eaa4ae525be06ada9cd6a146)) * increase activity count when etching ([#14](https://github.com/hirosystems/runehook/issues/14)) ([e797fc3](https://github.com/hirosystems/runehook/commit/e797fc3bc023777ad38c9a5b1f9a0cd5672607c1)) * move unallocated without need for a runestone ([#22](https://github.com/hirosystems/runehook/issues/22)) ([69559e0](https://github.com/hirosystems/runehook/commit/69559e0b70f49197f0ae645820960e4cfd8852e2)) * open and close pg connections for each chainhook message ([#15](https://github.com/hirosystems/runehook/issues/15)) ([3c93671](https://github.com/hirosystems/runehook/commit/3c936719681b102cc0c2afa5e06b9ffb6d3672ce)) * register receive operations correctly on edicts ([#21](https://github.com/hirosystems/runehook/issues/21)) ([de48a59](https://github.com/hirosystems/runehook/commit/de48a593426c422d5554f7bbd99b133baaca5ae3)) --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- api/package-lock.json | 4 ++-- api/package.json | 2 +- 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac33ea8..87b3b66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## [0.3.0](https://github.com/hirosystems/runehook/compare/v0.2.2...v0.3.0) (2024-07-29) + + +### Features + +* add zeromq streaming and rollback support ([#8](https://github.com/hirosystems/runehook/issues/8)) ([c201bb5](https://github.com/hirosystems/runehook/commit/c201bb521b2fb30e4983d4f601ac7719907c2d26)) +* address activity endpoint ([#18](https://github.com/hirosystems/runehook/issues/18)) ([c6b8bbe](https://github.com/hirosystems/runehook/commit/c6b8bbe683d1433a44147a474c389d9380959c23)) +* number field in rune response ([#35](https://github.com/hirosystems/runehook/issues/35)) ([4485057](https://github.com/hirosystems/runehook/commit/4485057825dcf22bd4bb4bd667da0d9d2886e1ab)) + + +### Bug Fixes + +* cached output balance retrieval ([#16](https://github.com/hirosystems/runehook/issues/16)) ([b87b921](https://github.com/hirosystems/runehook/commit/b87b9212ec1e4addd394dc7af8e3e94c447d4487)) +* default output selection without a runestone ([#23](https://github.com/hirosystems/runehook/issues/23)) ([016583c](https://github.com/hirosystems/runehook/commit/016583c69d559ff6eaa4ae525be06ada9cd6a146)) +* increase activity count when etching ([#14](https://github.com/hirosystems/runehook/issues/14)) ([e797fc3](https://github.com/hirosystems/runehook/commit/e797fc3bc023777ad38c9a5b1f9a0cd5672607c1)) +* move unallocated without need for a runestone ([#22](https://github.com/hirosystems/runehook/issues/22)) ([69559e0](https://github.com/hirosystems/runehook/commit/69559e0b70f49197f0ae645820960e4cfd8852e2)) +* open and close pg connections for each chainhook message ([#15](https://github.com/hirosystems/runehook/issues/15)) ([3c93671](https://github.com/hirosystems/runehook/commit/3c936719681b102cc0c2afa5e06b9ffb6d3672ce)) +* register receive operations correctly on edicts ([#21](https://github.com/hirosystems/runehook/issues/21)) ([de48a59](https://github.com/hirosystems/runehook/commit/de48a593426c422d5554f7bbd99b133baaca5ae3)) + ## [0.3.0-beta.5](https://github.com/hirosystems/runehook/compare/v0.3.0-beta.4...v0.3.0-beta.5) (2024-07-29) diff --git a/Cargo.lock b/Cargo.lock index 9c6cdd9..2e31044 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3056,7 +3056,7 @@ dependencies = [ [[package]] name = "runehook" -version = "0.3.0-beta.5" +version = "0.3.0" dependencies = [ "bitcoin 0.30.2", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 1b21bc1..7da812b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runehook" -version = "0.3.0-beta.5" +version = "0.3.0" edition = "2021" [[bin]] diff --git a/api/package-lock.json b/api/package-lock.json index ca6c3fe..beb7eff 100644 --- a/api/package-lock.json +++ b/api/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hirosystems/runes-api", - "version": "0.3.0-beta.5", + "version": "0.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@hirosystems/runes-api", - "version": "0.3.0-beta.5", + "version": "0.3.0", "license": "Apache 2.0", "dependencies": { "@fastify/cors": "^8.0.0", diff --git a/api/package.json b/api/package.json index d73b86a..c8a77e7 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "@hirosystems/runes-api", - "version": "0.3.0-beta.5", + "version": "0.3.0", "description": "", "main": "index.js", "scripts": {