From 038b641a4d2519d84d1993c5a33ac3be4259e933 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 6 Jan 2016 14:56:16 +0200 Subject: [PATCH] Version bump to 2.7.1 (issues #356, #421, #422, #426, #427, #428, #434) --- HISTORY.rst | 6 ++++-- platformio/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 65b52066..adf1d2a5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,15 +4,17 @@ Release History PlatformIO 2.0 -------------- -2.7.1 (2016-01-??) +2.7.1 (2016-01-06) ~~~~~~~~~~~~~~~~~~ +* Initial support for Arduino Zero board + (`issue #356 `_) * Generate default targets for `supported IDE `__ (CLion, Eclipse IDE, Emacs, Sublime Text, VIM): Build, Clean, Upload, Upload SPIFFS image, Upload using Programmer, Update installed platforms and libraries (`issue #427 `_) -* Updated Teensy Arduino Framework to 1.26 +* Updated Teensy Arduino Framework to 1.27 (`issue #434 `_) * Fixed uploading of EEPROM data using ``uploadeep`` target for Atmel AVR development platform diff --git a/platformio/__init__.py b/platformio/__init__.py index 9aef008d..35d08ccc 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (2, 7, "1.dev0") +VERSION = (2, 7, 1) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"