diff --git a/modules/brk-client/index.js b/modules/brk-client/index.js index fcc25d9dd..7737076fe 100644 --- a/modules/brk-client/index.js +++ b/modules/brk-client/index.js @@ -8341,7 +8341,7 @@ function createUnspentPattern(client, acc) { * @extends BrkClientBase */ class BrkClient extends BrkClientBase { - VERSION = "v0.3.6"; + VERSION = "v0.11.0"; INDEXES = /** @type {const} */ ([ "minute10", diff --git a/modules/brk-client/package.json b/modules/brk-client/package.json index 4746d4e68..4a45ca11b 100644 --- a/modules/brk-client/package.json +++ b/modules/brk-client/package.json @@ -42,5 +42,5 @@ "url": "git+https://github.com/bitcoinresearchkit/brk.git" }, "type": "module", - "version": "0.3.6" + "version": "0.11.0" } diff --git a/packages/brk_client/brk_client/__init__.py b/packages/brk_client/brk_client/__init__.py index 0733d6b9b..38638e4ea 100644 --- a/packages/brk_client/brk_client/__init__.py +++ b/packages/brk_client/brk_client/__init__.py @@ -7252,7 +7252,7 @@ class SeriesTree: class BrkClient(BrkClientBase): """Main BRK client with series tree and API methods.""" - VERSION = "v0.3.6" + VERSION = "v0.11.0" INDEXES = [ "minute10", diff --git a/packages/brk_client/pyproject.toml b/packages/brk_client/pyproject.toml index a078d4b07..e47ee39fe 100644 --- a/packages/brk_client/pyproject.toml +++ b/packages/brk_client/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "brk-client" -version = "0.3.6" +version = "0.11.0" description = "Bitcoin on-chain analytics client — thousands of metrics, block explorer, and address index" readme = "README.md" requires-python = ">=3.9"