diff --git a/HISTORY.rst b/HISTORY.rst index b5f38262..bfac38ae 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,10 +6,10 @@ Release Notes PlatformIO Core 4 ----------------- -4.3.2 (2020-??-??) +4.3.2 (2020-04-28) ~~~~~~~~~~~~~~~~~~ -* New `Account Management System `__ with "username" and social providers (preview) +* New `Account Management System `__ (preview) * Open source `PIO Remote `__ client * Improved `PIO Check `__ with more accurate project processing * Echo what is typed when ``send_on_enter`` device monitor filter `__ is used (`issue #3452 `_) diff --git a/docs b/docs index f2ef46d1..bff1fc84 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit f2ef46d1f066900326fcaa51c45a6e2605de52b4 +Subproject commit bff1fc845ba76ef25d692ba6079123148f783048 diff --git a/examples b/examples index 8805b183..7793b677 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit 8805b1833c97fefcc8a5b9100a8f460810ce1a85 +Subproject commit 7793b677f72ce3c3e9ed92b7915859ca2bfa313f diff --git a/platformio/__init__.py b/platformio/__init__.py index 7d7384a5..2c57b841 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -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" diff --git a/platformio/managers/core.py b/platformio/managers/core.py index f0413d15..cb6ad31c 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -24,7 +24,7 @@ from platformio.proc import get_pythonexe_path 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",