Skip to content

Commit

Permalink
Update RTD version labeling for LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiwek committed Feb 8, 2020
1 parent 3810768 commit c9e1a2d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0-160
1.2.0-161
4 changes: 2 additions & 2 deletions doc/_templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
2 changes: 1 addition & 1 deletion include/broker/version.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit c9e1a2d

Please sign in to comment.