Skip to content

Commit cb98901

Browse files
committed
Release 2.0.1
1 parent 011e256 commit cb98901

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ 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-
#### [v2.0.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.1...v2.0.0)
7+
#### [v2.0.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v2.0.0...v2.0.1)
8+
9+
- changing lastPriceToken from token to string [`#477`](https://github.com/oceanprotocol/ocean-subgraph/pull/477)
10+
11+
### [v2.0.0](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.1...v2.0.0)
12+
13+
> 29 June 2022
14+
15+
- Release 2.0.0 [`d864a5a`](https://github.com/oceanprotocol/ocean-subgraph/commit/d864a5ade7ebcf1067cd7a930b268d75833aa536)
816

917
#### [v1.2.1](https://github.com/oceanprotocol/ocean-subgraph/compare/v1.2.0...v1.2.1)
1018

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": "2.0.0",
3+
"version": "2.0.1",
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
@@ -14,7 +14,7 @@ export function getGlobalStats(): GlobalStatistic {
1414
let globalStats = GlobalStatistic.load(GLOBAL_ID)
1515
if (!globalStats) {
1616
globalStats = new GlobalStatistic(GLOBAL_ID)
17-
globalStats.version = '2.0.0'
17+
globalStats.version = '2.0.1'
1818
globalStats.save()
1919
}
2020
return globalStats

0 commit comments

Comments
 (0)