Skip to content

Commit f5b5400

Browse files
committed
Release 3.0.10
1 parent aeef301 commit f5b5400

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,23 @@ 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+
#### [v3.0.10](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.9...v3.0.10)
8+
9+
- Bump to graphnode 0.28.2 [`#702`](https://github.com/oceanprotocol/ocean-subgraph/pull/702)
10+
- Template id detection [`#705`](https://github.com/oceanprotocol/ocean-subgraph/pull/705)
11+
- reduce docker siz [`#709`](https://github.com/oceanprotocol/ocean-subgraph/pull/709)
12+
- Create README.md [`#698`](https://github.com/oceanprotocol/ocean-subgraph/pull/698)
13+
- Bump word-wrap from 1.2.3 to 1.2.4 [`#701`](https://github.com/oceanprotocol/ocean-subgraph/pull/701)
14+
715
#### [v3.0.9](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.8...v3.0.9)
816

17+
> 4 July 2023
18+
919
- bump to latest contracts [`#695`](https://github.com/oceanprotocol/ocean-subgraph/pull/695)
1020
- Bump release-it from 15.10.3 to 15.11.0 [`#688`](https://github.com/oceanprotocol/ocean-subgraph/pull/688)
1121
- Bump mock-local-storage from 1.1.23 to 1.1.24 [`#683`](https://github.com/oceanprotocol/ocean-subgraph/pull/683)
1222
- Bump vm2 from 3.9.17 to 3.9.18 [`#681`](https://github.com/oceanprotocol/ocean-subgraph/pull/681)
23+
- Release 3.0.9 [`a62a4c1`](https://github.com/oceanprotocol/ocean-subgraph/commit/a62a4c189ddd5f712acb62a683dec1c9c8e067b9)
1324

1425
#### [v3.0.8](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.7...v3.0.8)
1526

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": "3.0.9",
3+
"version": "3.0.10",
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 = '3.0.9'
16+
globalStats.version = '3.0.10'
1717
globalStats.orderCount = 0
1818
globalStats.fixedCount = 0
1919
globalStats.datatokenCount = 0

0 commit comments

Comments
 (0)