diff --git a/CHANGELOG.md b/CHANGELOG.md index a4294bb..d443fab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,14 @@ 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). +#### [v4.0.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v4.0.1...v4.0.2) + +- fix deps [`#744`](https://github.com/oceanprotocol/ocean-subgraph/pull/744) + #### [v4.0.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v4.0.0...v4.0.1) +> 22 November 2023 + - Feature/add_optimism & use graph-node 0.33.0 [`#742`](https://github.com/oceanprotocol/ocean-subgraph/pull/742) - Bump chai and @types/chai [`#729`](https://github.com/oceanprotocol/ocean-subgraph/pull/729) - Bump @graphprotocol/graph-cli from 0.56.0 to 0.61.0 [`#738`](https://github.com/oceanprotocol/ocean-subgraph/pull/738) @@ -14,6 +20,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Bump minimist from 1.2.5 to 1.2.6 [`#740`](https://github.com/oceanprotocol/ocean-subgraph/pull/740) - Bump tar from 4.4.13 to 4.4.19 [`#741`](https://github.com/oceanprotocol/ocean-subgraph/pull/741) - Bump @graphprotocol/graph-ts from 0.30.0 to 0.31.0 [`#730`](https://github.com/oceanprotocol/ocean-subgraph/pull/730) +- Release 4.0.1 [`cf58c9a`](https://github.com/oceanprotocol/ocean-subgraph/commit/cf58c9aae4aa16f7a30b4c93de72786b1d4b3b3f) ### [v4.0.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.10...v4.0.0) diff --git a/package-lock.json b/package-lock.json index caf1604..3067bf7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ocean-subgraph", - "version": "4.0.1", + "version": "4.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ocean-subgraph", - "version": "4.0.1", + "version": "4.0.2", "license": "Apache-2.0", "dependencies": { "@oceanprotocol/contracts": "^2.0.3", diff --git a/package.json b/package.json index bd5454c..f12f221 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "4.0.1", + "version": "4.0.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 aa9d53e..608eabf 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 = '4.0.1' + globalStats.version = '4.0.2' globalStats.orderCount = 0 globalStats.fixedCount = 0 globalStats.datatokenCount = 0