blob: dae7b3df0d4b454d49790e4e9c80b28539104746 [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
7#include <common/version.h>
8
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;