From cb9890122c02cb42b4fc374892c010e6f7166b8e Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Thu, 30 Jun 2022 13:00:30 +0300 Subject: [PATCH] Release 2.0.1 --- CHANGELOG.md | 10 +++++++++- package-lock.json | 4 ++-- package.json | 2 +- src/mappings/utils/globalUtils.ts | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1795d7..648f472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,15 @@ 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.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.1...v2.0.0) +#### [v2.0.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.0...v2.0.1) + +- changing lastPriceToken from token to string [`#477`](https://github.com/oceanprotocol/ocean-subgraph/pull/477) + +### [v2.0.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.1...v2.0.0) + +> 29 June 2022 + +- Release 2.0.0 [`d864a5a`](https://github.com/oceanprotocol/ocean-subgraph/commit/d864a5ade7ebcf1067cd7a930b268d75833aa536) #### [v1.2.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.0...v1.2.1) diff --git a/package-lock.json b/package-lock.json index c51753b..1ebd361 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "ocean-subgraph", - "version": "2.0.0", + "version": "2.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "1.2.0", + "version": "2.0.1", "license": "Apache-2.0", "dependencies": { "@oceanprotocol/lib": "^1.1.3", diff --git a/package.json b/package.json index 6fdd579..4c7afb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "2.0.0", + "version": "2.0.1", "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 c4dd0b6..91a79f9 100644 --- a/src/mappings/utils/globalUtils.ts +++ b/src/mappings/utils/globalUtils.ts @@ -14,7 +14,7 @@ export function getGlobalStats(): GlobalStatistic { let globalStats = GlobalStatistic.load(GLOBAL_ID) if (!globalStats) { globalStats = new GlobalStatistic(GLOBAL_ID) - globalStats.version = '2.0.0' + globalStats.version = '2.0.1' globalStats.save() } return globalStats