From cde747439f7ada792509dd2b56075d4744ac15e4 Mon Sep 17 00:00:00 2001 From: Mihai Tudor Panu Date: Thu, 8 Dec 2016 15:47:13 -0800 Subject: [PATCH] upm: v1.0.2 Signed-off-by: Mihai Tudor Panu --- CMakeLists.txt | 2 +- docs/changelog.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ace639edd..8c4bb9b66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -193,7 +193,7 @@ include (GetGitRevisionDescription) git_describe (VERSION "--tags") # If git_describe fails, use a dirty version if (${VERSION} MATCHES -NOTFOUND) - set (VERSION "v1.0.1") + set (VERSION "v1.0.2") message (WARNING "Failed to retrieve UPM version with 'git describe' (using " "${VERSION}). Check that git is installed and this is a valid git repo.") endif () diff --git a/docs/changelog.md b/docs/changelog.md index f0838a83b..5d2027480 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,15 @@ Changelog {#changelog} Here's a list summarizing some of the key undergoing changes to our library from earlier versions: +### v1.0.2 + + * Minor cmake changes for Java builds and Java examples are now toggled with + the same BUILDEXAMPLES cmake switch + * Made some improvements in the utilities class for our C drivers + * Fixed issue with some drivers not being usable on subplatforms due to pin + numbers using uint8 type + * New sensors: ims, ecezo, mb704x, rf22 + ### v1.0.1 * Warnings as errors enabled for C/CXX (fixed warnings from -Wall and others)