From 181a4f45d0be93140677ba96470bb33a4936d88e Mon Sep 17 00:00:00 2001 From: alexcos20 Date: Wed, 14 Sep 2022 12:48:23 +0300 Subject: [PATCH] Release 2.0.6 --- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/mappings/utils/globalUtils.ts | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e2e254..4a29591 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [v2.0.6](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.5...v2.0.6) + +- fix nftUpdate critical bug [`#534`](https://github.com/oceanprotocol/ocean-subgraph/pull/534) +- add erc725 key/value store [`#533`](https://github.com/oceanprotocol/ocean-subgraph/pull/533) + #### [v2.0.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.4...v2.0.5) +> 13 September 2022 + - Feature/df rewards [`#531`](https://github.com/oceanprotocol/ocean-subgraph/pull/531) - nft updates [`#530`](https://github.com/oceanprotocol/ocean-subgraph/pull/530) - Bump typescript from 4.8.2 to 4.8.3 [`#527`](https://github.com/oceanprotocol/ocean-subgraph/pull/527) +- Release 2.0.5 [`a74e3ed`](https://github.com/oceanprotocol/ocean-subgraph/commit/a74e3edb3a12070cbfe3caf56fbabf4f57aa8e7f) #### [v2.0.4](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.3...v2.0.4) diff --git a/package-lock.json b/package-lock.json index 0422424..8748a16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ocean-subgraph", - "version": "2.0.5", + "version": "2.0.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ocean-subgraph", - "version": "2.0.5", + "version": "2.0.6", "license": "Apache-2.0", "dependencies": { "@oceanprotocol/contracts": "^1.1.4", diff --git a/package.json b/package.json index b0321ca..9f2767d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "2.0.5", + "version": "2.0.6", "scripts": { "start": "", "quickstart:development": "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local && npm run deploy:local", diff --git a/src/mappings/utils/globalUtils.ts b/src/mappings/utils/globalUtils.ts index afd6f2e..52d7a3e 100644 --- a/src/mappings/utils/globalUtils.ts +++ b/src/mappings/utils/globalUtils.ts @@ -13,7 +13,7 @@ export function getGlobalStats(): GlobalStatistic { let globalStats = GlobalStatistic.load(GLOBAL_ID) if (!globalStats) { globalStats = new GlobalStatistic(GLOBAL_ID) - globalStats.version = '2.0.5' + globalStats.version = '2.0.6' globalStats.orderCount = 0 globalStats.fixedCount = 0 globalStats.datatokenCount = 0