mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-14 10:13:05 +02:00
23 lines
1.5 KiB
C
23 lines
1.5 KiB
C
/***********************************************************************************************************************************
|
|
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"
|
|
|
|
/***********************************************************************************************************************************
|
|
Standard binary name
|
|
***********************************************************************************************************************************/
|
|
#define PGBACKREST_BIN "pgbackrest"
|
|
|
|
/***********************************************************************************************************************************
|
|
Version of the software. Currently this value is maintained in Version.pm and updated by test.pl.
|
|
***********************************************************************************************************************************/
|
|
#define PGBACKREST_VERSION "2.04dev"
|
|
|
|
#endif
|