diff options
| author | Sudar <sudar@sudarmuthu.com> | 2013-06-15 19:48:47 +0530 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2013-06-15 19:48:47 +0530 |
| commit | 109693ad689f38efd4fb5deb5877f4732e4e8154 (patch) | |
| tree | 99f27f4596d381b0e776cf1b8d122f28411a90a6 | |
| parent | 0149f34daf9d39e002993b604ae575ceb0eea01e (diff) | |
Release v0.11.00.11.0
| -rw-r--r-- | HISTORY.md | 2 | ||||
| -rw-r--r-- | README.md | 7 | ||||
| -rw-r--r-- | arduino-mk/Arduino.mk | 2 |
3 files changed, 6 insertions, 5 deletions
@@ -3,7 +3,7 @@ A Makefile for Arduino Sketches The following is the rough list of changes that went into different versions. I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list. -### 0.11.0 (in development) +### 0.11.0 (2013-06-15) - Replace hardcoded executables with variable - Fix whitespace issues - Add a warning when HEX_MAXIMUM_SIZE is not specified @@ -59,7 +59,7 @@ is set to `$HOME/sketchbook`. ## Versioning -The current version of the makefile is `0.10.6`. You can find the full history in the [HISTORY.md](HISTORY.md) file +The current version of the makefile is `0.11.0`. You can find the full history in the [HISTORY.md](HISTORY.md) file This project adheres to Semantic [Versioning 2.0](http://semver.org/). @@ -69,11 +69,12 @@ All contributions (even documentation) are welcome :) Open a pull request and I If you are looking for ideas to work on, then check out the following TODO items or the [issue tracker](https://github.com/sudar/Arduino-Makefile/issues/). -## Know Issues / TODO's +## Limitations / Know Issues / TODO's -- Doesn't work with Arduino 1.5.x yet. +- Doesn't work with Arduino 1.5.x yet. Follow [issue #45](https://github.com/sudar/Arduino-Makefile/issues/45) for progress. - Since it doesn't do any pre processing like Arduino IDE, you have to declare all methods before you use them ([issue #59](https://github.com/sudar/Arduino-Makefile/issues/59)) - More than one .ino or .pde file is not supported yet ([issue #49](https://github.com/sudar/Arduino-Makefile/issues/49)) +- When you compile for the first time, it builds all libs inside Arduino directory even if it is not needed. But while linking only the relevant files are linked. ([issue #29](https://github.com/sudar/Arduino-Makefile/issues/29)). Even Arduino IDE does the same thing though. If you find an issue or have an idea for a feature then log them in the [issue tracker](https://github.com/sudar/Arduino-Makefile/issues/) diff --git a/arduino-mk/Arduino.mk b/arduino-mk/Arduino.mk index 3471da9..0dafffc 100644 --- a/arduino-mk/Arduino.mk +++ b/arduino-mk/Arduino.mk @@ -19,7 +19,7 @@ # # Original Arduino adaptation by mellis, eighthave, oli.keller # -# Current version: 0.10.6 +# Current version: 0.11.0 # # Refer to HISTORY.md file for complete history of changes # |
