diff --git a/CHANGELOG.md b/CHANGELOG.md index 34d53c6..6d2f494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.1.0 + * Add support for building individual modules with code coverage + ## 1.0.0 * Switch on C++11 compilation by default. This is technically a breaking change, but the mbed-OS modules themselves have been patched so that they @@ -26,5 +29,3 @@ ## 0.0.14 For this and prior releases, no changes were tracked. Please see the git history - - diff --git a/target.json b/target.json index 359686f..2dc201e 100644 --- a/target.json +++ b/target.json @@ -1,6 +1,6 @@ { "name": "mbed-gcc", - "version": "1.0.0", + "version": "1.1.0", "description": "base mbed build target for gcc toolchain", "licenses": [ { @@ -33,5 +33,7 @@ } }, "toolchain": "CMake/toolchain.cmake", - "cmakeIncludes": ["coverage/coverage.cmake"] + "cmakeIncludes": [ + "coverage/coverage.cmake" + ] }