diff --git a/modules/brk-client/index.js b/modules/brk-client/index.js index d3a788143..daff0c804 100644 --- a/modules/brk-client/index.js +++ b/modules/brk-client/index.js @@ -4938,7 +4938,7 @@ function createRatioPattern2(client, acc) { * @extends BrkClientBase */ class BrkClient extends BrkClientBase { - VERSION = "v0.1.3"; + VERSION = "v0.1.4"; INDEXES = /** @type {const} */ ([ "dateindex", diff --git a/modules/brk-client/package.json b/modules/brk-client/package.json index be99ad894..58a618310 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.3" + "version": "0.1.4" } diff --git a/packages/brk_client/brk_client/__init__.py b/packages/brk_client/brk_client/__init__.py index bbf522d35..0e5cf9dd5 100644 --- a/packages/brk_client/brk_client/__init__.py +++ b/packages/brk_client/brk_client/__init__.py @@ -4368,7 +4368,7 @@ class MetricsTree: class BrkClient(BrkClientBase): """Main BRK client with metrics tree and API methods.""" - VERSION = "v0.1.3" + VERSION = "v0.1.4" INDEXES = [ "dateindex", diff --git a/packages/brk_client/pyproject.toml b/packages/brk_client/pyproject.toml index e756f3464..320efe4c5 100644 --- a/packages/brk_client/pyproject.toml +++ b/packages/brk_client/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "brk-client" -version = "0.1.3" +version = "0.1.4" description = "Python client for the Bitcoin Research Kit" readme = "README.md" requires-python = ">=3.9"