Skip to content

Commit 8691538

Browse files
committed
Release 3.0.7
1 parent 5b2ccbc commit 8691538

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,9 +4,16 @@ 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.7](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.6...v3.0.7)
8+
9+
- switch amount from wei to numeric [`#666`](https://github.com/oceanprotocol/ocean-subgraph/pull/666)
10+
711
#### [v3.0.6](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.5...v3.0.6)
812

13+
> 28 April 2023
14+
915
- proper veDelegation [`#663`](https://github.com/oceanprotocol/ocean-subgraph/pull/663)
16+
- Release 3.0.6 [`9fd0553`](https://github.com/oceanprotocol/ocean-subgraph/commit/9fd055333705185b5f507fddcdf0f5502add1f1c)
1017

1118
#### [v3.0.5](https://github.com/oceanprotocol/ocean-subgraph/compare/v3.0.4...v3.0.5)
1219

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

0 commit comments

Comments
 (0)