Skip to content

Commit 8930eef

Browse files
committed
Release 4.0.2
1 parent 36ae877 commit 8930eef

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v4.0.2](https://github.com/oceanprotocol/ocean-subgraph/compare/v4.0.1...v4.0.2)
8+
9+
- fix deps [`#744`](https://github.com/oceanprotocol/ocean-subgraph/pull/744)
10+
711
#### [v4.0.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v4.0.0...v4.0.1)
812

13+
> 22 November 2023
14+
915
- Feature/add_optimism & use graph-node 0.33.0 [`#742`](https://github.com/oceanprotocol/ocean-subgraph/pull/742)
1016
- Bump chai and @types/chai [`#729`](https://github.com/oceanprotocol/ocean-subgraph/pull/729)
1117
- 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).
1420
- Bump minimist from 1.2.5 to 1.2.6 [`#740`](https://github.com/oceanprotocol/ocean-subgraph/pull/740)
1521
- Bump tar from 4.4.13 to 4.4.19 [`#741`](https://github.com/oceanprotocol/ocean-subgraph/pull/741)
1622
- Bump @graphprotocol/graph-ts from 0.30.0 to 0.31.0 [`#730`](https://github.com/oceanprotocol/ocean-subgraph/pull/730)
23+
- Release 4.0.1 [`cf58c9a`](https://github.com/oceanprotocol/ocean-subgraph/commit/cf58c9aae4aa16f7a30b4c93de72786b1d4b3b3f)
1724

1825
### [v4.0.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.10...v4.0.0)
1926

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ocean-subgraph",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"scripts": {
55
"start": "",
66
"quickstart:development": "node ./scripts/generatenetworkssubgraphs.js development && npm run codegen && npm run create:local && npm run deploy:local",

src/mappings/utils/globalUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function getGlobalStats(): GlobalStatistic {
1313
let globalStats = GlobalStatistic.load(GLOBAL_ID)
1414
if (!globalStats) {
1515
globalStats = new GlobalStatistic(GLOBAL_ID)
16-
globalStats.version = '4.0.1'
16+
globalStats.version = '4.0.2'
1717
globalStats.orderCount = 0
1818
globalStats.fixedCount = 0
1919
globalStats.datatokenCount = 0

0 commit comments

Comments
 (0)