Skip to content

Commit

Permalink
Bump version to 4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Apr 28, 2020
1 parent 5d8440f commit f35e6e9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Release Notes
PlatformIO Core 4
-----------------

4.3.2 (2020-??-??)
4.3.2 (2020-04-28)
~~~~~~~~~~~~~~~~~~

* New `Account Management System <https://docs.platformio.org/page/plus/pio-account.html>`__ with "username" and social providers (preview)
* New `Account Management System <https://docs.platformio.org/page/plus/pio-account.html>`__ (preview)
* Open source `PIO Remote <http://docs.platformio.org/page/plus/pio-remote.html>`__ client
* Improved `PIO Check <http://docs.platformio.org/page/plus/pio-check.html>`__ with more accurate project processing
* Echo what is typed when ``send_on_enter`` device monitor filter <https://docs.platformio.org/page/projectconf/section_env_monitor.html#monitor-filters>`__ is used (`issue #3452 <https://github.com/platformio/platformio-core/issues/3452>`_)
Expand Down
2 changes: 1 addition & 1 deletion docs
2 changes: 1 addition & 1 deletion examples
2 changes: 1 addition & 1 deletion platformio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

VERSION = (4, 3, "2rc2")
VERSION = (4, 3, 2)
__version__ = ".".join([str(s) for s in VERSION])

__title__ = "platformio"
Expand Down
2 changes: 1 addition & 1 deletion platformio/managers/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from platformio.project.config import ProjectConfig

CORE_PACKAGES = {
"contrib-piohome": ">=3.2.0-rc.2",
"contrib-piohome": "~3.2.0",
"contrib-pysite": "~2.%d%d.0" % (sys.version_info.major, sys.version_info.minor),
"tool-unity": "~1.20500.0",
"tool-scons": "~2.20501.7" if PY2 else "~3.30102.0",
Expand Down

0 comments on commit f35e6e9

Please sign in to comment.