1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-02-07 13:42:41 +02:00
pgbackrest/src/version.h

39 lines
2.7 KiB
C
Raw Normal View History

/***********************************************************************************************************************************
Version Numbers and Names
***********************************************************************************************************************************/
#ifndef VERSION_H
#define VERSION_H
/***********************************************************************************************************************************
Official name of the project
***********************************************************************************************************************************/
#define PROJECT_NAME "pgBackRest"
2018-01-23 13:34:24 -05:00
/***********************************************************************************************************************************
Standard binary name
***********************************************************************************************************************************/
#define PROJECT_BIN "pgbackrest"
2018-01-23 13:34:24 -05:00
/***********************************************************************************************************************************
Config file name. The path will vary based on configuration.
***********************************************************************************************************************************/
#define PROJECT_CONFIG_FILE PROJECT_BIN ".conf"
/***********************************************************************************************************************************
Config include path name. The parent path will vary based on configuration.
***********************************************************************************************************************************/
#define PROJECT_CONFIG_INCLUDE_PATH "conf.d"
2017-11-28 21:44:05 -05: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 REPOSITORY_FORMAT 5
/***********************************************************************************************************************************
Software version
2017-11-28 21:44:05 -05:00
***********************************************************************************************************************************/
2022-11-28 17:56:59 +08:00
#define PROJECT_VERSION "2.44dev"
2017-11-28 21:44:05 -05:00
#endif