From 92094086f98ebe7470f1fcbeeb297fbb695a431e Mon Sep 17 00:00:00 2001 From: alexcos20 Date: Wed, 28 Sep 2022 13:55:41 +0300 Subject: [PATCH] Release 2.1.2 --- CHANGELOG.md | 9 +++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/mappings/utils/globalUtils.ts | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 031116f..c5fa4f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,18 @@ 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.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.1.1...v2.1.2) + +- 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) + #### [v2.1.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.1.0...v2.1.1) +> 26 September 2022 + - fix allocation [`#544`](https://github.com/oceanprotocol/ocean-subgraph/pull/544) +- Release 2.1.1 [`253dc63`](https://github.com/oceanprotocol/ocean-subgraph/commit/253dc63fa853011ed95f3501cc4cf0eed6d22f73) #### [v2.1.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.7...v2.1.0) diff --git a/package-lock.json b/package-lock.json index 21ade05..0a2986b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ocean-subgraph", - "version": "2.1.1", + "version": "2.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ocean-subgraph", - "version": "2.1.1", + "version": "2.1.2", "license": "Apache-2.0", "dependencies": { "@oceanprotocol/contracts": "^1.1.7", diff --git a/package.json b/package.json index 9fb0a20..6471d54 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "2.1.1", + "version": "2.1.2", "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 74e4b06..a1b83b2 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.1' + globalStats.version = '2.1.2' globalStats.orderCount = 0 globalStats.fixedCount = 0 globalStats.datatokenCount = 0