From aab16f8832c78945b2eb8625f6c58d4195189516 Mon Sep 17 00:00:00 2001 From: nym21 Date: Fri, 8 May 2026 12:14:34 +0200 Subject: [PATCH] clients: bump versions --- modules/brk-client/index.js | 2 +- modules/brk-client/package.json | 2 +- packages/brk_client/brk_client/__init__.py | 2 +- packages/brk_client/pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/brk-client/index.js b/modules/brk-client/index.js index 22bc2c41b..647583f8a 100644 --- a/modules/brk-client/index.js +++ b/modules/brk-client/index.js @@ -7499,7 +7499,7 @@ function createTransferPattern(client, acc) { * @extends BrkClientBase */ class BrkClient extends BrkClientBase { - VERSION = "v0.3.0-beta.8"; + VERSION = "v0.3.0-beta.9"; INDEXES = /** @type {const} */ ([ "minute10", diff --git a/modules/brk-client/package.json b/modules/brk-client/package.json index 2afd5ed39..0f08479c3 100644 --- a/modules/brk-client/package.json +++ b/modules/brk-client/package.json @@ -40,5 +40,5 @@ "url": "git+https://github.com/bitcoinresearchkit/brk.git" }, "type": "module", - "version": "0.3.0-beta.8" + "version": "0.3.0-beta.9" } diff --git a/packages/brk_client/brk_client/__init__.py b/packages/brk_client/brk_client/__init__.py index ca82299e4..d730161a4 100644 --- a/packages/brk_client/brk_client/__init__.py +++ b/packages/brk_client/brk_client/__init__.py @@ -6649,7 +6649,7 @@ class SeriesTree: class BrkClient(BrkClientBase): """Main BRK client with series tree and API methods.""" - VERSION = "v0.3.0-beta.8" + VERSION = "v0.3.0-beta.9" INDEXES = [ "minute10", diff --git a/packages/brk_client/pyproject.toml b/packages/brk_client/pyproject.toml index 4fd2d7bad..12d389f76 100644 --- a/packages/brk_client/pyproject.toml +++ b/packages/brk_client/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "brk-client" -version = "0.3.0-beta.8" +version = "0.3.0-beta.9" description = "Bitcoin on-chain analytics client — thousands of metrics, block explorer, and address index" readme = "README.md" requires-python = ">=3.9"