Compare commits

..

No commits in common. "db73133f1b3e0913da13fd45e73d3e5df9519cbe" and "adff6bd08cc731be660ebe60ccc9b51cb2d1494c" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
major = 1
minor = 1
patch = 0
status = "rc"
status = "dev"
doc_branch = "latest"
# Code that generates version header

View File

@ -22,7 +22,7 @@
inline String GET_LIMBOAI_VERSION() {
String version = itos(LIMBOAI_VERSION_MAJOR) + "." + itos(LIMBOAI_VERSION_MINOR);
if (LIMBOAI_VERSION_PATCH != 0 || strlen(LIMBOAI_VERSION_STATUS) == 0) {
if (LIMBOAI_VERSION_PATCH != 0) {
version += "." + itos(LIMBOAI_VERSION_PATCH);
}
if (strlen(LIMBOAI_VERSION_STATUS) > 0) {