Fix release version to be compatible with origin to avoid confusing clients. Before: [penberg@nero apache-cassandra-2.1.7]$ ./bin/cqlsh --no-color 127.0.0.1 Connected to Test Cluster at 127.0.0.1:9042. [cqlsh 5.0.1 | Cassandra SeastarDB v0.1 | CQL spec 3.2.0 | Native protocol v3] Use HELP for help. cqlsh> After: [penberg@nero apache-cassandra-2.1.7]$ ./bin/cqlsh --no-color 127.0.0.1 Connected to Test Cluster at 127.0.0.1:9042. [cqlsh 5.0.1 | Cassandra 2.2.0 | CQL spec 3.2.0 | Native protocol v3] Use HELP for help. cqlsh> Signed-off-by: Pekka Enberg <penberg@cloudius-systems.com>
15 lines
200 B
C++
15 lines
200 B
C++
#pragma once
|
|
|
|
#include "core/sstring.hh"
|
|
|
|
namespace version {
|
|
inline const int native_protocol() {
|
|
return 3;
|
|
}
|
|
|
|
inline const sstring& release() {
|
|
static sstring v = "2.2.0";
|
|
return v;
|
|
}
|
|
}
|