usnistgov / SP800-90B_EntropyAssessment

The SP800-90B_EntropyAssessment C++package implements the min-entropy assessment methods included in Special Publication 800-90B.
195 stars 88 forks source link

v1.1.8 not reporting correct version #236

Open mmccarl opened 2 months ago

mmccarl commented 2 months ago

running ea_non_iid --version still reports v1.1.7 instead of v1.1.8

AEGISOLVE-TEAM commented 3 weeks ago

Any update on this issue. Pulled the latest code - and up to date with master branch. $ git branch --contains v1.1.8

However ea_non_iid --version is reporting v1.1.7 and not v1.1.8 $ ./ea_non_iid --version noniid 1.1.7

joshuaehill commented 3 weeks ago

This is due to the macro in cpp/shared/utils.h:

#define VERSION "1.1.7"

This just needs to be updated to "1.1.8" for this version, but the next version (1.1.9?) will need to update to that. This value needs to be manually updated for each release, so it's pretty easy to overlook.