bumped version to 0.2.5

This commit is contained in:
TLINDEN
2015-01-17 15:02:03 +01:00
parent 61c6c338f8
commit c0a4f7f887
3 changed files with 32 additions and 5 deletions

View File

@@ -25,10 +25,10 @@
#define PCP_VERSION_MAJOR 0
#define PCP_VERSION_MINOR 2
#define PCP_VERSION_PATCH 4
#define PCP_VERSION_PATCH 5
#define PCP_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
((major * 10000) + (minor * 100) + (patch))
#define PCP_VERSION \
PCP_MAKE_VERSION(PCP_VERSION_MAJOR, PCP_VERSION_MINOR, PCP_VERSION_PATCH)