forked from platformio/platformio-core
Bump version to 4.2.1a2
This commit is contained in:
@ -9,10 +9,10 @@ PlatformIO Core 4
|
|||||||
4.2.1 (2020-02-??)
|
4.2.1 (2020-02-??)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Improved VSCode template with special ``forceInclude`` field for direct inludes via ``-include`` flag (`issue #3379 <https://github.com/platformio/platformio-core/issues/3379>`_)
|
||||||
* Improved support of PIO Home on card-sized PC (Raspberry Pi, etc.) (`issue #3313 <https://github.com/platformio/platformio-core/issues/3313>`_)
|
* Improved support of PIO Home on card-sized PC (Raspberry Pi, etc.) (`issue #3313 <https://github.com/platformio/platformio-core/issues/3313>`_)
|
||||||
* Froze "marshmallow" dependency to 2.X for Python 2 (`issue #3380 <https://github.com/platformio/platformio-core/issues/3380>`_)
|
* Froze "marshmallow" dependency to 2.X for Python 2 (`issue #3380 <https://github.com/platformio/platformio-core/issues/3380>`_)
|
||||||
* Fixed "TypeError: unsupported operand type(s)" when system environment variable is used by project configuration parser (`issue #3377 <https://github.com/platformio/platformio-core/issues/3377>`_)
|
* Fixed "TypeError: unsupported operand type(s)" when system environment variable is used by project configuration parser (`issue #3377 <https://github.com/platformio/platformio-core/issues/3377>`_)
|
||||||
* Improved VSCode template with special `forceInclude` field for direct inludes via `-include` flag (`issue #3379 <https://github.com/platformio/platformio-core/issues/3379>`_)
|
|
||||||
|
|
||||||
|
|
||||||
4.2.0 (2020-02-12)
|
4.2.0 (2020-02-12)
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
VERSION = (4, 2, "1a1")
|
VERSION = (4, 2, "1a2")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
2
setup.py
2
setup.py
@ -35,7 +35,7 @@ install_requires = [
|
|||||||
"semantic_version>=2.8.1,<3",
|
"semantic_version>=2.8.1,<3",
|
||||||
"tabulate>=0.8.3,<1",
|
"tabulate>=0.8.3,<1",
|
||||||
"pyelftools>=0.25,<1",
|
"pyelftools>=0.25,<1",
|
||||||
"marshmallow%s" % (">=2,<3" if PY2 else ">=3"),
|
"marshmallow%s" % (">=2,<3" if PY2 else ">=2"),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user