diff --git a/CHANGELOG.md b/CHANGELOG.md index b82b4c75..5dee4994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,17 @@ 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). +#### [v3.0.3](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.2...v3.0.3) + +- Removing amountFraction and adding timestamp [`#647`](https://github.com/oceanprotocol/ocean-subgraph/pull/647) +- Fixing decimals issue [`#644`](https://github.com/oceanprotocol/ocean-subgraph/pull/644) +- Bump typescript from 5.0.2 to 5.0.3 [`#641`](https://github.com/oceanprotocol/ocean-subgraph/pull/641) +- Bump release-it from 15.9.3 to 15.10.0 [`#640`](https://github.com/oceanprotocol/ocean-subgraph/pull/640) + #### [v3.0.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.1...v3.0.2) +> 31 March 2023 + - Storing the fraction of veOcean [`#623`](https://github.com/oceanprotocol/ocean-subgraph/pull/623) - Bump eslint-config-prettier from 8.7.0 to 8.8.0 [`#637`](https://github.com/oceanprotocol/ocean-subgraph/pull/637) - Bump prettier from 2.8.4 to 2.8.7 [`#636`](https://github.com/oceanprotocol/ocean-subgraph/pull/636) @@ -25,6 +34,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - Bump @graphprotocol/graph-ts from 0.29.1 to 0.29.3 [`#611`](https://github.com/oceanprotocol/ocean-subgraph/pull/611) - Bump typescript from 4.9.4 to 4.9.5 [`#610`](https://github.com/oceanprotocol/ocean-subgraph/pull/610) - Bump @graphprotocol/graph-cli from 0.37.7 to 0.38.0 [`#609`](https://github.com/oceanprotocol/ocean-subgraph/pull/609) +- Release 3.0.2 [`de5f1aa`](https://github.com/oceanprotocol/ocean-subgraph/commit/de5f1aab4bc70d6ec831fa0f24099666ef3c46a1) #### [v3.0.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.0...v3.0.1) diff --git a/package-lock.json b/package-lock.json index 561a80d2..0c762357 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ocean-subgraph", - "version": "3.0.2", + "version": "3.0.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ocean-subgraph", - "version": "3.0.2", + "version": "3.0.3", "license": "Apache-2.0", "dependencies": { "@oceanprotocol/contracts": "^1.1.12", diff --git a/package.json b/package.json index a0328adf..5acc7051 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "3.0.2", + "version": "3.0.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 dbab391b..d631c290 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 = '3.0.2' + globalStats.version = '3.0.3' globalStats.orderCount = 0 globalStats.fixedCount = 0 globalStats.datatokenCount = 0