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

chore: bump temporary protocol version #349

Merged
merged 1 commit into from
Sep 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/version/protocolVersion.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module.exports = {
latestVersion: 1,
latestVersion: 2,
// Even if we bumping protocol version, previous versions of entity structures
// can be still compatible, that allow to not update clients so often.
//
// Minimum compatible versions must be defined for all protocol versions:
// [protocolVersion]: [minimumCompatibleProtocolVersions]
compatibility: {
1: 1,
2: 1,
},
};