Skip to content
This repository was archived by the owner on Jan 4, 2022. It is now read-only.

Commit 0174db5

Browse files
authored
feat: introduce temporary protocol version 2 (#349)
1 parent 92d41cd commit 0174db5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/version/protocolVersion.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module.exports = {
2-
latestVersion: 1,
2+
latestVersion: 2,
33
// Even if we bumping protocol version, previous versions of entity structures
44
// can be still compatible, that allow to not update clients so often.
55
//
66
// Minimum compatible versions must be defined for all protocol versions:
77
// [protocolVersion]: [minimumCompatibleProtocolVersions]
88
compatibility: {
99
1: 1,
10+
2: 1,
1011
},
1112
};

0 commit comments

Comments
 (0)