8000 Release process fix & major/minor/rev macro addition by d-a-v · Pull Request #8126 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Release process fix & major/minor/rev macro addition #8126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Jun 16, 2021
Prev Previous commit
Next Next commit
use default values for new version defines
  • Loading branch information
d-a-v committed Jun 13, 2021
commit 878c02c328f6521347d91438a47d1f68f0a14731
12 changes: 12 additions & 0 deletions cores/esp8266/core_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@
#define ARDUINO_ESP8266_GIT_DESC unspecified
#endif

#ifndef ARDUINO_ESP8266_MAJOR
#define ARDUINO_ESP8266_MAJOR 0
#endif

#ifndef ARDUINO_ESP8266_MINOR
#define ARDUINO_ESP8266_MINOR 0
#endif

#ifndef ARDUINO_ESP8266_REVISION
#define ARDUINO_ESP8266_REVISION 0
#endif

// ARDUINO_ESP8266_RELEASE is defined for released versions as a string containing the version name, i.e. "2_3_0_RC1"
// ARDUINO_ESP8266_RELEASE is used in the core internally. Please use ESP.getCoreVersion() function instead.

Expand Down
0