Merge pull request #185 from VectorCamp/bugfix/fix-inconsistent-version-header

Fix version getting out of sync #175
This commit is contained in:
Konstantinos Margaritis 2023-10-11 19:52:22 +03:00 committed by GitHub
commit 02474c4f52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View File

@ -39,12 +39,7 @@
* the individual component headers for documentation.
*/
/* The current Hyperscan version information. */
#define HS_MAJOR 5
#define HS_MINOR 4
#define HS_PATCH 9
#include "hs_version.h"
#include "hs_compile.h"
#include "hs_runtime.h"

View File

@ -36,5 +36,9 @@
#define HS_VERSION_32BIT ((@HS_MAJOR_VERSION@ << 24) | (@HS_MINOR_VERSION@ << 16) | (@HS_PATCH_VERSION@ << 8) | 0)
#define HS_MAJOR @HS_MAJOR_VERSION@
#define HS_MINOR @HS_MINOR_VERSION@
#define HS_PATCH @HS_PATCH_VERSION@
#endif /* HS_VERSION_H_C6428FAF8E3713 */