-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abd1726
commit 01f302e
Showing
5 changed files
with
8 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ PlatformIO allows to use specific version of platform using | |
Version specifications can take any of the following forms: | ||
|
||
* ``1.2.3``: an exact version number. Use only this exact version | ||
* ``^1.2.3``: any compatible version (exact version for ``1.x.x`` versions | ||
* ``^1.2.3``: any compatible version (exact version for ``1.x.x`` versions) | ||
* ``~1.2.3``: any version with the same major and minor versions, and an | ||
equal or greater patch version | ||
* ``>1.2.3``: any version greater than ``1.2.3``. ``>=``, ``<``, and ``<=`` | ||
|
@@ -48,6 +48,9 @@ Examples: | |
[env:the_latest_version] | ||
platform = atmelavr | ||
[env:specific_version] | ||
platform = [email protected] | ||
[env:specific_major_version] | ||
platform = atmelavr@^1.2.3 | ||
|
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