diff --git a/CHANGES b/CHANGES index 4ff536a7..e62a7fe9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,8 @@ +1.2.0-161 | 2020-02-08 11:01:43 -0800 + + * Update RTD version labeling for LTS (Jon Siwek, Corelight) + 1.2.0-160 | 2020-02-08 10:41:13 -0800 * Fix RTD version number/label template (Jon Siwek, Corelight) diff --git a/VERSION b/VERSION index 9fe2541c..685a482c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0-160 +1.2.0-161 diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index c20df709..f6e7dcc9 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -2,8 +2,8 @@ {% if READTHEDOCS and current_version %} {% if current_version == "latest" or current_version == "stable" - or current_version == "master" or current_version == "lts" - or current_version == "current" %} + or current_version == "master" or current_version == "current" + or current_version == "lts" or current_version == "LTS" %} {% set current_version = current_version ~ " (" ~ version ~ ")" %} {% endif %} {% endif %} diff --git a/include/broker/version.hh b/include/broker/version.hh index 422a1dfe..52b80807 100644 --- a/include/broker/version.hh +++ b/include/broker/version.hh @@ -11,7 +11,7 @@ using type = unsigned; constexpr type major = 1; constexpr type minor = 2; constexpr type patch = 0; -constexpr auto suffix = "-160"; +constexpr auto suffix = "-161"; constexpr type protocol = 2;