blob: 99a85776f6851213391b2994458e5a14822f492a [file] [log] [blame]
Willy Tarreau909b9d82019-01-04 18:20:32 +01001/*
2 * Version reporting : all user-visible version information should come from
3 * this file so that rebuilding only this one is enough to report the latest
4 * code version.
5 */
6
Willy Tarreaud6788052020-05-27 15:59:00 +02007#include <haproxy/version.h>
Willy Tarreau909b9d82019-01-04 18:20:32 +01008
Willy Tarreauabefa342019-10-16 09:44:55 +02009/* These ones are made variables and not constants so that they are stored into
10 * the data region and prominently appear in core files.
11 */
12char haproxy_version_here[] = "HAProxy version follows";
13char haproxy_version[] = HAPROXY_VERSION;
14char haproxy_date[] = HAPROXY_DATE;
15char stats_version_string[] = STATS_VERSION_STRING;