diff --git a/README.md b/README.md index cce7fa5..5c44b8b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,11 @@ Visit [forta.org](https://forta.org/) to learn more about Forta. See the develop ## Changelog -### 0.1.4 +### 0.1.5 + +- Fix issue for CLI `publish` command when querying account balance + +### [0.1.4](https://github.com/forta-network/forta-bot-sdk/commit/1142feca952c8998c358338224574a592f9ef179) - Update gRPC agent.proto to add `Finding.addresses` - Add support for `addresses` field to `Finding` @@ -16,7 +20,7 @@ Visit [forta.org](https://forta.org/) to learn more about Forta. See the develop - Include `address` in result of `TransactionEvent.filterFunction` - Add `Finding.from` alias method for `Finding.fromObject` -### 0.1.3 +### [0.1.3](https://github.com/forta-network/forta-bot-sdk/commit/d46e9a7e1f547296cc85c23fae7c22e8c3ce3fbf) - Set `contextPath` when building image diff --git a/package.json b/package.json index c55d19d..fe289aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "forta-agent", - "version": "0.1.4", + "version": "0.1.5", "license": "MIT", "description": "Forta Agent SDK and CLI tool", "homepage": "https://forta.org/", diff --git a/starter-project/js/package.json b/starter-project/js/package.json index 21bac9d..c5248cf 100644 --- a/starter-project/js/package.json +++ b/starter-project/js/package.json @@ -21,7 +21,7 @@ "test": "jest" }, "dependencies": { - "forta-agent": "^0.1.4" + "forta-agent": "^0.1.5" }, "devDependencies": { "jest": "^27.0.6", diff --git a/starter-project/py/package.json b/starter-project/py/package.json index 2563f77..858f628 100644 --- a/starter-project/py/package.json +++ b/starter-project/py/package.json @@ -22,7 +22,7 @@ "test": "python3 -m pytest" }, "dependencies": { - "forta-agent": "^0.1.4" + "forta-agent": "^0.1.5" }, "devDependencies": { "nodemon": "^2.0.8" diff --git a/starter-project/ts/package.json b/starter-project/ts/package.json index 2fb466c..8086277 100644 --- a/starter-project/ts/package.json +++ b/starter-project/ts/package.json @@ -22,7 +22,7 @@ "test": "jest" }, "dependencies": { - "forta-agent": "^0.1.4" + "forta-agent": "^0.1.5" }, "devDependencies": { "@types/jest": "^27.0.1",