diff --git a/README.rst b/README.rst index 8be2a4c..ece4f21 100644 --- a/README.rst +++ b/README.rst @@ -81,9 +81,24 @@ License If not stated otherwise ino is distributed in terms of MIT software license. See MIT-LICENSE.txt in the distribution for details. +Contributors +============ + +* `David Charbonnier `_. +* `Jared Boone `_. + Changelog ========= +0.3.4 + * Fix #44, #45: Building and uploading for Arduino Leonardo is fully supported. + * Fix #3, #29: Build artifacts for different board models and Arduino distributions + go in different build subdirectories, so you haven't to run ``ino clean`` and + rebuild if you switch to another Arduino model or software distribution. + * The version of avr gcc toolset that is bundled with Arduino Software is now + always preferred over system-wide. So that users with edge-versions of software + (such as Arch Linux) able to produce expected results. + 0.3.3 * Fix #16: ``*.ino`` and ``*.pde`` sketches are now populated with function prototypes while preprocessing step in the same way as it done by Arduino IDE, diff --git a/setup.py b/setup.py index a618752..39a9273 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ def gen_data_files(package_dir, subdir): setup( name='ino', - version='0.3.3', + version='0.3.4', description='Command line toolkit for working with Arduino hardware', long_description=readme_content, author='Victor Nakoryakov, Amperka Team',