-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
#ifndef REST_Version | ||
#define REST_Version | ||
/* Version information automatically generated by installer. */ /* | ||
* These macros can be used in the following way: | ||
* | ||
* #if REST_VERSION_CODE >= REST_VERSION(2,23,4) | ||
* #include <newheader.h> | ||
* #else | ||
* #include <oldheader.h> | ||
* #endif | ||
* | ||
*/ | ||
#define REST_RELEASE "2.2.17" | ||
#define REST_RELEASE_DATE "Mon May 11" | ||
#define REST_RELEASE_TIME "22:48:25 CEST 2020" | ||
#define REST_GIT_COMMIT "8b84e682" | ||
#define REST_VERSION_CODE 131601 | ||
#define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c)) | ||
/* Version information automatically generated by installer. *//* | ||
* These macros can be used in the following way: | ||
* | ||
* #if REST_VERSION_CODE >= REST_VERSION(2,23,4) | ||
* #include <newheader.h> | ||
* #else | ||
* #include <oldheader.h> | ||
* #endif | ||
* | ||
*/ | ||
#define REST_RELEASE "2.2.18" | ||
#define REST_RELEASE_DATE "Sat Jun 6" | ||
#define REST_RELEASE_TIME "13:08:53 CEST 2020" | ||
#define REST_GIT_COMMIT "5df1d8a2" | ||
#define REST_VERSION_CODE 131602 | ||
#define REST_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) | ||
#define REST_SCHEMA_EVOLUTION "ON" | ||
#endif |