Skip to content

Commit 8e1ee18

Browse files
author
Zoran Cvetkov
committed
bump the spec version
1 parent 40a3ede commit 8e1ee18

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

graph/src/components/store/entity_cache.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,6 @@ impl EntityCache {
453453
for (key, update) in self.updates {
454454
use EntityModification::*;
455455

456-
// let is_poi = key.entity_type.is_poi();
457456
let current = self.current.remove(&key).and_then(|entity| entity);
458457
let modification = match (current, update) {
459458
// Entity was created

graph/src/data/subgraph/api_version.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,12 @@ pub const SPEC_VERSION_1_1_0: Version = Version::new(1, 1, 0);
5454
// Enables eth call declarations and indexed arguments(topics) filtering in manifest
5555
pub const SPEC_VERSION_1_2_0: Version = Version::new(1, 2, 0);
5656

57+
// Change the way the VID field is generated. It used to be autoincrement. Now its
58+
// based on block number and the sequence of the entities in a block.
59+
pub const SPEC_VERSION_1_3_0: Version = Version::new(1, 3, 0);
60+
5761
// The latest spec version available
58-
pub const LATEST_VERSION: &Version = &SPEC_VERSION_1_2_0;
62+
pub const LATEST_VERSION: &Version = &SPEC_VERSION_1_3_0;
5963

6064
pub const MIN_SPEC_VERSION: Version = Version::new(0, 0, 2);
6165

0 commit comments

Comments
 (0)