Update releasenotes.md

This commit is contained in:
Jason Turner 2015-01-17 14:28:06 -07:00
parent b436791272
commit 343264944a

View File

@ -5,6 +5,7 @@ Current Version: 5.6.0
### Changes since 5.5.1 ### Changes since 5.5.1
* Throw exception on integer divide by 0 * Throw exception on integer divide by 0
* Add optional type specification to function declarations * Add optional type specification to function declarations
``` ```
def func(int i, j, double k) { def func(int i, j, double k) {
// i must be an int. // i must be an int.
@ -12,7 +13,7 @@ Current Version: 5.6.0
// k must be a double // k must be a double
// normal conversion rules still apply // normal conversion rules still apply
} }
``` ```
* Many minor fixes for compiler warnings * Many minor fixes for compiler warnings
* Add support for `std::future` and `std::async` * Add support for `std::future` and `std::async`
``` ```