diff --git a/CHANGELOG.md b/CHANGELOG.md index f9b6962..ab0a117 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,29 @@ 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.4](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.3...v2.0.4) + +- update tests for new ocean.js 2.0 [`#526`](https://github.com/oceanprotocol/ocean-subgraph/pull/526) +- Bump @graphprotocol/graph-cli from 0.33.0 to 0.33.1 [`#525`](https://github.com/oceanprotocol/ocean-subgraph/pull/525) +- Bump release-it from 15.4.0 to 15.4.1 [`#524`](https://github.com/oceanprotocol/ocean-subgraph/pull/524) +- Implementing first pass of veAllocate schema, handlers, and test coveā€¦ [`#490`](https://github.com/oceanprotocol/ocean-subgraph/pull/490) +- Testing user fields [`#516`](https://github.com/oceanprotocol/ocean-subgraph/pull/516) +- Bump json-schema from 0.2.3 to 0.4.0 [`#523`](https://github.com/oceanprotocol/ocean-subgraph/pull/523) +- Bump release-it from 15.3.0 to 15.4.0 [`#522`](https://github.com/oceanprotocol/ocean-subgraph/pull/522) +- Bump typescript from 4.7.4 to 4.8.2 [`#521`](https://github.com/oceanprotocol/ocean-subgraph/pull/521) +- Bump @oceanprotocol/lib from 1.1.7 to 1.1.8 [`#519`](https://github.com/oceanprotocol/ocean-subgraph/pull/519) +- Bump @types/chai from 4.3.2 to 4.3.3 [`#517`](https://github.com/oceanprotocol/ocean-subgraph/pull/517) +- Bump release-it from 15.2.0 to 15.3.0 [`#518`](https://github.com/oceanprotocol/ocean-subgraph/pull/518) +- Dispenser tests [`#514`](https://github.com/oceanprotocol/ocean-subgraph/pull/514) +- Fixed rate exchange tests [`#513`](https://github.com/oceanprotocol/ocean-subgraph/pull/513) +- Bump @types/chai from 4.3.1 to 4.3.2 [`#511`](https://github.com/oceanprotocol/ocean-subgraph/pull/511) +- Bump @oceanprotocol/lib from 1.1.6 to 1.1.7 [`#512`](https://github.com/oceanprotocol/ocean-subgraph/pull/512) +- fixed swapper change issue [`#510`](https://github.com/oceanprotocol/ocean-subgraph/pull/510) + #### [v2.0.3](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.2...v2.0.3) +> 2 August 2022 + - Tracking templateId [`#508`](https://github.com/oceanprotocol/ocean-subgraph/pull/508) - Additional tests for NFT and Datatokens [`#498`](https://github.com/oceanprotocol/ocean-subgraph/pull/498) - Bump mock-local-storage from 1.1.21 to 1.1.23 [`#507`](https://github.com/oceanprotocol/ocean-subgraph/pull/507) @@ -15,7 +36,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - minor change [`#501`](https://github.com/oceanprotocol/ocean-subgraph/pull/501) - Revert "roolback deps" [`4353b15`](https://github.com/oceanprotocol/ocean-subgraph/commit/4353b153910717182930735c7bd596301132eb92) - roolback deps [`a8396ae`](https://github.com/oceanprotocol/ocean-subgraph/commit/a8396aec1941769c69fd462d0b318464afdb2193) -- Update globalUtils.ts [`3ced2e4`](https://github.com/oceanprotocol/ocean-subgraph/commit/3ced2e41791306dbc1aa846c985e8f2f30773f13) +- Release 2.0.3 [`8416d77`](https://github.com/oceanprotocol/ocean-subgraph/commit/8416d773cc2f7cd9606872c0a61f7bf782c95006) #### [v2.0.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.1...v2.0.2) diff --git a/package-lock.json b/package-lock.json index 70d56c1..82b627e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ocean-subgraph", - "version": "2.0.3", + "version": "2.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ocean-subgraph", - "version": "2.0.3", + "version": "2.0.4", "license": "Apache-2.0", "dependencies": { "@oceanprotocol/contracts": "^1.1.3", diff --git a/package.json b/package.json index 1d4d6c4..410a24d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ocean-subgraph", - "version": "2.0.3", + "version": "2.0.4", "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 b34bd1b..7d81f43 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.0.3' + globalStats.version = '2.0.4' globalStats.orderCount = 0 globalStats.fixedCount = 0 globalStats.datatokenCount = 0