From ae78cae6083514592756f2549f21a307361d96d8 Mon Sep 17 00:00:00 2001 From: mihaisc Date: Fri, 30 Sep 2022 16:11:58 +0300 Subject: [PATCH] Release 2.1.3 --- CHANGELOG.md | 8 ++++++++ package-lock.json | 2 +- package.json | 2 +- src/mappings/utils/globalUtils.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5fa4f9..aec9a6a 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.1.3](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.1.2...v2.1.3) + +- add chainId and nftAddress [`#552`](https://github.com/oceanprotocol/ocean-subgraph/pull/552) +- Bump vm2 from 3.9.9 to 3.9.11 [`#550`](https://github.com/oceanprotocol/ocean-subgraph/pull/550) + #### [v2.1.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.1.1...v2.1.2) +> 28 September 2022 + - fix tokenRemoved [`#549`](https://github.com/oceanprotocol/ocean-subgraph/pull/549) - Bump @oceanprotocol/lib from 2.0.2 to 2.1.1 [`#545`](https://github.com/oceanprotocol/ocean-subgraph/pull/545) - Bump eslint-config-oceanprotocol from 2.0.3 to 2.0.4 [`#546`](https://github.com/oceanprotocol/ocean-subgraph/pull/546) +- Release 2.1.2 [`9209408`](https://github.com/oceanprotocol/ocean-subgraph/commit/92094086f98ebe7470f1fcbeeb297fbb695a431e) #### [v2.1.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.1.0...v2.1.1) diff --git a/package-lock.json b/package-lock.json index 60a86bc..f6cffac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "2.1.2", + "version": "2.1.3", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 6471d54..dd9645d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "2.1.2", + "version": "2.1.3", "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 a1b83b2..0e5a080 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.1.2' + globalStats.version = '2.1.3' globalStats.orderCount = 0 globalStats.fixedCount = 0 globalStats.datatokenCount = 0