Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Aug 15, 2018
1 parent abd1726 commit 01f302e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion projectconf/section_env_general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 ``<=``
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion userguide/lib/cmd_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The ``version`` supports `Semantic Versioning <http://semver.org>`_ (
``<major>.<minor>.<patch>``) and 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 ``<=``
Expand Down
2 changes: 1 addition & 1 deletion userguide/lib/cmd_uninstall.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The ``version`` supports `Semantic Versioning <http://semver.org>`_ (
``<major>.<minor>.<patch>``) and 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 ``<=``
Expand Down
2 changes: 1 addition & 1 deletion userguide/lib/cmd_update.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The ``version`` supports `Semantic Versioning <http://semver.org>`_ (
``<major>.<minor>.<patch>``) and 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 ``<=``
Expand Down
2 changes: 1 addition & 1 deletion userguide/platforms/cmd_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ The ``version`` supports `Semantic Versioning <http://semver.org>`_ (
``<major>.<minor>.<patch>``) and 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 ``<=``
Expand Down

0 comments on commit 01f302e

Please sign in to comment.