From 9e8efd9d218ff848b2de47cd8a1c5030e255b077 Mon Sep 17 00:00:00 2001 From: Haseeb Rabbani Date: Sun, 16 Oct 2022 10:09:29 +0300 Subject: [PATCH] version bump js v0.1.12; py v0.1.5 --- README.md | 8 ++++++-- package.json | 2 +- python-sdk/setup.cfg | 2 +- starter-project/js/package.json | 2 +- starter-project/py/package.json | 2 +- starter-project/py/requirements.txt | 2 +- starter-project/ts/package.json | 2 +- 7 files changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0e2be5f..0ba6b2b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,12 @@ We have a [bug bounty program on Immunefi](https://immunefi.com/bounty/forta). P ## Changelog -### 0.1.11 +### 0.1.12 + +- Remove `sha3` dependency from Python SDK + +### [0.1.11](https://github.com/forta-network/forta-bot-sdk/commit/57d625b1f6cafc6a5cdcd19b38d3395aac31ff60) + - Bug fix to the `fetch_jwt` method in the Python sdk ### [0.1.10](https://github.com/forta-network/forta-bot-sdk/commit/debe98ba192fe500dd2259d03a511e40054abb04) @@ -26,7 +31,6 @@ We have a [bug bounty program on Immunefi](https://immunefi.com/bounty/forta). P - Added new method `get_alerts` to Python sdk to that fetches alerts using forta's alert graphql api - Fixing docker build issue - ### [0.1.8](https://github.com/forta-network/forta-bot-sdk/commit/9740a8ad0acdcd112d8bd6ba72f191e0b67602cd) - Updated chainId validation of `run` command to print out warning instead of throwing error diff --git a/package.json b/package.json index 4a9a69a..6c9c9af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "forta-agent", - "version": "0.1.11", + "version": "0.1.12", "license": "MIT", "description": "Forta Agent SDK and CLI tool", "homepage": "https://forta.org/", diff --git a/python-sdk/setup.cfg b/python-sdk/setup.cfg index d30df11..1a29b99 100644 --- a/python-sdk/setup.cfg +++ b/python-sdk/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = forta_agent -version = 0.1.4 +version = 0.1.5 description = Forta Agent Python SDK url = https://forta.org/ project_urls = diff --git a/starter-project/js/package.json b/starter-project/js/package.json index 2fbd034..290276b 100644 --- a/starter-project/js/package.json +++ b/starter-project/js/package.json @@ -23,7 +23,7 @@ "test": "jest" }, "dependencies": { - "forta-agent": "^0.1.11" + "forta-agent": "^0.1.12" }, "devDependencies": { "jest": "^27.0.6", diff --git a/starter-project/py/package.json b/starter-project/py/package.json index 2be0610..92f5505 100644 --- a/starter-project/py/package.json +++ b/starter-project/py/package.json @@ -24,7 +24,7 @@ "test": "python3 -m pytest" }, "dependencies": { - "forta-agent": "^0.1.11" + "forta-agent": "^0.1.12" }, "devDependencies": { "nodemon": "^2.0.8" diff --git a/starter-project/py/requirements.txt b/starter-project/py/requirements.txt index 98cc4bd..48fc7ff 100644 --- a/starter-project/py/requirements.txt +++ b/starter-project/py/requirements.txt @@ -1,2 +1,2 @@ -forta_agent>=0.1.4 +forta_agent>=0.1.5 setuptools>=61.3.1 \ No newline at end of file diff --git a/starter-project/ts/package.json b/starter-project/ts/package.json index 62b7135..67235a5 100644 --- a/starter-project/ts/package.json +++ b/starter-project/ts/package.json @@ -24,7 +24,7 @@ "test": "jest" }, "dependencies": { - "forta-agent": "^0.1.11" + "forta-agent": "^0.1.12" }, "devDependencies": { "@types/jest": "^27.0.1",