diff --git a/HISTORY.rst b/HISTORY.rst index 75202dfc..ab9119fe 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,12 +6,12 @@ Release Notes PlatformIO Core 4 ----------------- -4.3.4 (2020-??-??) +4.3.4 (2020-05-23) ~~~~~~~~~~~~~~~~~~ -* Added `PlatformIO CLI Shell Completion `__ for Fish, Zsh, Bash, and PowerShell (`issue #3435 `_) +* Added `PlatformIO CLI Shell Completion `__ for Fish, Zsh, Bash, and PowerShell (`issue #3435 `_) * Automatically build ``contrib-pysite`` package on a target machine when pre-built package is not compatible (`issue #3482 `_) -* Fixed an issue on Windows when installing a dependency from Git repository raised a permission error (`issue #2844 `_, `issue #3328 `_) +* Fixed an issue on Windows when installing a library dependency from Git repository (`issue #2844 `_, `issue #3328 `_) 4.3.3 (2020-04-28) ~~~~~~~~~~~~~~~~~~ diff --git a/docs b/docs index 2cd0dce6..68341524 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 2cd0dce683f40f5606bf7476d47e7bb052cfebba +Subproject commit 683415246be491a91c2f8e63fa46b0e6ab55f91b diff --git a/platformio/__init__.py b/platformio/__init__.py index 34f79414..1e2e3fd1 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, "4b1") +VERSION = (4, 3, 4) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"