-
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.24" | ||
#define REST_RELEASE_DATE "Mon Dec 28" | ||
#define REST_RELEASE_TIME "18:17:55 CET 2020" | ||
#define REST_GIT_COMMIT "a1b98265" | ||
#define REST_VERSION_CODE 131608 | ||
#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.25" | ||
#define REST_RELEASE_DATE "Tue Jan 5" | ||
#define REST_RELEASE_TIME "22:15:22 CET 2021" | ||
#define REST_GIT_COMMIT "fa8cd8bf" | ||
#define REST_VERSION_CODE 131609 | ||
#define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c)) | ||
#define REST_SCHEMA_EVOLUTION "ON" | ||
#endif |