-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparation for release 4.0.0 rc2 (#1878)
* Initial refactoring of the readme in preparation for Sming v4.0.0 * NON-OS SDK 3.0.1 is now the default SDK for Sming for the ESP8266 architecture. Users can still switch to their preferred SDK by setting the environment variable SDK_BASE to point to the location of their SDK. For Linux that used to be export SDK_BASE=$ESP_HOME/sdk And for Windows that used to be set SDK_BASE=$ESP_HOME/ESP8266_SDK * Simplify the CI system and support officially only NON-OS SDK >= 3.0.1. * Added TOC * Don't compile basic blink before the coverity scan. Otherwise the compiled code will not be included in the static code analysis results. * Move Sming version information into `SmingVersion.h` (#31) * Move Sming version information into `SmingVersion.h` and update to include pre-release tag * 4.0.0-rc2 [scan:coverity]
- Loading branch information
Showing
10 changed files
with
178 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Sming version information | ||
* | ||
* https://github.com/semver/semver/blob/master/semver.md | ||
* | ||
*/ | ||
|
||
#define SMING_MAJOR_VERSION 4 | ||
#define SMING_MINOR_VERSION 0 | ||
#define SMING_PATCH_VERSION 0 | ||
#define SMING_PRE_RELEASE "-rc2" | ||
|
||
#define MACROQUOT(x) #x | ||
#define MACROQUOTE(x) MACROQUOT(x) | ||
|
||
// Version string, e.g. 3.8.0-dev | ||
#define SMING_VERSION \ | ||
MACROQUOTE(SMING_MAJOR_VERSION) \ | ||
"." MACROQUOTE(SMING_MINOR_VERSION) "." MACROQUOTE(SMING_PATCH_VERSION) SMING_PRE_RELEASE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters