Release v0.11.0
This commit is contained in:
parent
0149f34daf
commit
109693ad68
3 changed files with 6 additions and 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.
|
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
|
- Replace hardcoded executables with variable
|
||||||
- Fix whitespace issues
|
- Fix whitespace issues
|
||||||
- Add a warning when HEX_MAXIMUM_SIZE is not specified
|
- Add a warning when HEX_MAXIMUM_SIZE is not specified
|
||||||
|
|
|
@ -59,7 +59,7 @@ is set to `$HOME/sketchbook`.
|
||||||
|
|
||||||
## Versioning
|
## 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/).
|
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/).
|
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))
|
- 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))
|
- 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/)
|
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/)
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#
|
#
|
||||||
# Original Arduino adaptation by mellis, eighthave, oli.keller
|
# 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
|
# Refer to HISTORY.md file for complete history of changes
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Reference in a new issue