From ff225eced46bf6e1e1abc58c3ee85bfc8305658c Mon Sep 17 00:00:00 2001 From: gepd Date: Mon, 3 Jul 2017 15:15:35 -0400 Subject: [PATCH] Release v2.0.1 --- CHANGES.md | 7 +++++++ libraries/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 254d97d..cd11a3d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,11 @@ # Deviot Release Notes +## Version 2.0.1 | 03 Jul 2017 +* Improvement Syntax is created even if the PlatformIO setup fails (Issue: https://github.com/gepd/Deviot/issues/125) +* Improvement Force Sublime Text to assign deviot syntax when it's a IOT file (Issue: https://github.com/gepd/Deviot/issues/125) +* Improvement The console will print the error when installation fails +* Bug fix removing the preferences files who was making crashing Sublime Text +* Multiples Bug fixes installing PlatformIO in macOS (Issue: https://github.com/gepd/Deviot/issues/124) + ## Version 2.0.0 | 02 Jul 2017 * Plugin totally rewritten * New PlatformIO console diff --git a/libraries/__init__.py b/libraries/__init__.py index 5efdf30..82e5b46 100644 --- a/libraries/__init__.py +++ b/libraries/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 0, 1, 'dev') +VERSION = (2, 0, 1) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "Deviot"