mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-16 00:43:00 +03:00
Release process fix & major/minor/rev macro addition (#8126)
* update release process to the new CI * generate ARDUINO_ESP8266_{MAJOR,MINOR,REVISION} in core_version.h * makecorever: new option `-r` for release
This commit is contained in:
@ -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.
|
||||
|
||||
|
Reference in New Issue
Block a user