Skip to content

Commit

Permalink
Merge tag 'v3.6.0' into develop
Browse files Browse the repository at this point in the history
Bump version to 3.6.0 (issues #1594 #1412 #1462 #1735)
  • Loading branch information
ivankravets committed Aug 6, 2018
2 parents 129146e + 70eedfb commit c3d598f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
18 changes: 7 additions & 11 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Release Notes
PlatformIO 3.0
--------------

3.6.0 (2018-??-??)
3.6.0 (2018-08-06)
~~~~~~~~~~~~~~~~~~

* `Program Memory Usage <http://docs.platformio.org/en/latest/faq.html#program-memory-usage>`_
Expand All @@ -15,22 +15,18 @@ PlatformIO 3.0
- Check maximum allowed "program" and "data" sizes before uploading/programming
(`issue #1412 <https://github.com/platformio/platformio-core/issues/1412>`_)

* Check package structure after unpacking and raise error when antivirus tool
blocks PlatformIO package manager
(`issue #1462 <https://github.com/platformio/platformio-core/issues/1462>`_)
* Lock interprocess requests to PlatformIO Package Manager for
install/uninstall operations
(`issue #1594 <https://github.com/platformio/platformio-core/issues/1594>`_)

3.5.5 (2018-??-??)
~~~~~~~~~~~~~~~~~~

* `PIO Unit Testing <http://docs.platformio.org/page/plus/unit-testing.html>`__:

- Documented `Project Shared Code <http://docs.platformio.org/page/plus/unit-testing.html#shared-code>`__
- Force building of project source code using `test_build_project_src <http://docs.platformio.org/page/projectconf/section_env_test.html#test_build_project_src>`__ option
- Fixed missed ``UNIT_TEST`` macro for unit test components/libraries

* Check package structure after unpacking and raise error when antivirus tool
blocks PlatformIO package manager
(`issue #1462 <https://github.com/platformio/platformio-core/issues/1462>`_)
* Lock interprocess requests to PlatformIO Package Manager for
install/uninstall operations
(`issue #1594 <https://github.com/platformio/platformio-core/issues/1594>`_)
* Fixed an issue with `PIO Remote <http://docs.platformio.org/page/plus/pio-remote.html>`__
when upload process depends on the source code of a project framework
* Fixed an issue when ``srcFilter`` field in `library.json <http://docs.platformio.org/page/librarymanager/config.html>`__
Expand Down
2 changes: 1 addition & 1 deletion docs
Submodule docs updated 0 files
2 changes: 1 addition & 1 deletion platformio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import sys

VERSION = (3, 6, "0rc1")
VERSION = (3, 6, 0)
__version__ = ".".join([str(s) for s in VERSION])

__title__ = "platformio"
Expand Down

0 comments on commit c3d598f

Please sign in to comment.