We are targeting the 2.1.x series so advertise that we're Cassandra 2.1.8 which is the latest stable release. 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.1.8";
|
|
return v;
|
|
}
|
|
}
|