diff --git a/modules/brk-client/index.js b/modules/brk-client/index.js index 62c150c98..2e86aa160 100644 --- a/modules/brk-client/index.js +++ b/modules/brk-client/index.js @@ -4992,7 +4992,7 @@ function createRatioPattern2(client, acc) { * @extends BrkClientBase */ class BrkClient extends BrkClientBase { - VERSION = "v0.1.6"; + VERSION = "v0.1.7"; INDEXES = /** @type {const} */ ([ "dateindex", diff --git a/modules/brk-client/package.json b/modules/brk-client/package.json index 5bdef631d..f47f2d9ae 100644 --- a/modules/brk-client/package.json +++ b/modules/brk-client/package.json @@ -34,5 +34,5 @@ "url": "git+https://github.com/bitcoinresearchkit/brk.git" }, "type": "module", - "version": "0.1.6" + "version": "0.1.7" } diff --git a/packages/brk_client/brk_client/__init__.py b/packages/brk_client/brk_client/__init__.py index 338775742..1dd54787d 100644 --- a/packages/brk_client/brk_client/__init__.py +++ b/packages/brk_client/brk_client/__init__.py @@ -4409,7 +4409,7 @@ class MetricsTree: class BrkClient(BrkClientBase): """Main BRK client with metrics tree and API methods.""" - VERSION = "v0.1.6" + VERSION = "v0.1.7" INDEXES = [ "dateindex", diff --git a/packages/brk_client/pyproject.toml b/packages/brk_client/pyproject.toml index 3d8e9626b..bba2798de 100644 --- a/packages/brk_client/pyproject.toml +++ b/packages/brk_client/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "brk-client" -version = "0.1.6" +version = "0.1.7" description = "Python client for the Bitcoin Research Kit" readme = "README.md" requires-python = ">=3.9"