Skip to content

Commit 270356d

Browse files
author
Zoran Cvetkov
committed
bump the spec version
1 parent 0189010 commit 270356d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,12 @@ pub const SPEC_VERSION_1_1_0: Version = Version::new(1, 1, 0);
5555
pub const SPEC_VERSION_1_2_0: Version = Version::new(1, 2, 0);
5656

5757
// Enables subgraphs as datasource
58+
// Change the way the VID field is generated. It used to be autoincrement. Now its
59+
// based on block number and the sequence of the entities in a block.
5860
pub const SPEC_VERSION_1_3_0: Version = Version::new(1, 3, 0);
5961

6062
// The latest spec version available
61-
pub const LATEST_VERSION: &Version = &SPEC_VERSION_1_2_0;
63+
pub const LATEST_VERSION: &Version = &SPEC_VERSION_1_3_0;
6264

6365
pub const MIN_SPEC_VERSION: Version = Version::new(0, 0, 2);
6466

0 commit comments

Comments
 (0)