1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00
pgbackrest/src/version.h

29 lines
2.0 KiB
C
Raw Normal View History

/***********************************************************************************************************************************
Version Numbers and Names
***********************************************************************************************************************************/
#ifndef VERSION_H
#define VERSION_H
/***********************************************************************************************************************************
Official name of the software, also used for Perl package name
***********************************************************************************************************************************/
#define PGBACKREST_NAME "pgBackRest"
2018-01-23 20:34:24 +02:00
/***********************************************************************************************************************************
Standard binary name
***********************************************************************************************************************************/
#define PGBACKREST_BIN "pgbackrest"
2017-11-29 04:44:05 +02:00
/***********************************************************************************************************************************
Format Number -- defines format for info and manifest files as well as on-disk structure. If this number changes then the
repository will be invalid unless migration functions are written.
***********************************************************************************************************************************/
#define PGBACKREST_FORMAT 5
/***********************************************************************************************************************************
Software version. Currently this value is maintained in Version.pm and updated by test.pl.
2017-11-29 04:44:05 +02:00
***********************************************************************************************************************************/
2018-08-31 20:24:36 +02:00
#define PGBACKREST_VERSION "2.06dev"
2017-11-29 04:44:05 +02:00
#endif