From 106b6c706268522ab0168a4ddb19e89ce832e084 Mon Sep 17 00:00:00 2001 From: Mihai Tudor Panu Date: Fri, 12 May 2017 11:33:47 -0700 Subject: [PATCH] upm: v1.3.0 Signed-off-by: Mihai Tudor Panu --- CMakeLists.txt | 4 ++-- docs/apichanges.md | 2 +- docs/changelog.md | 11 +++++++++++ 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 15a30fb2..42a1adba 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,7 +123,7 @@ find_package (PkgConfig REQUIRED) # Force a libmraa search and minimum required version every time a config is generated unset(MRAA_FOUND CACHE) -set(MRAA_MINIMUM 1.6.1) +set(MRAA_MINIMUM 1.7.0) pkg_check_modules (MRAA REQUIRED mraa>=${MRAA_MINIMUM}) # Also, get full path to the mraa library find_library(MRAA_LIBRARY NAMES mraa PATHS ${MRAA_LIBDIR}) @@ -208,7 +208,7 @@ include (GetGitRevisionDescription) git_describe (VERSION "--tags") # If git_describe fails, use a dirty version if (${VERSION} MATCHES -NOTFOUND) - set (VERSION "v1.2.0") + set (VERSION "v1.3.0") 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/apichanges.md b/docs/apichanges.md index 8dd03bfb..f0f84047 100644 --- a/docs/apichanges.md +++ b/docs/apichanges.md @@ -4,7 +4,7 @@ API Changes {#apichanges} Here's a list of other API changes made to the library that break source/binary compatibility between releases: -# current UPM master +# v1.3.0 * **The lsm303 driver has been renamed** There are a variety of LSM303 devices out there with various incompatibilities and differing diff --git a/docs/changelog.md b/docs/changelog.md index 74f2888b..a369fc60 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,17 @@ Changelog {#changelog} Here's a list summarizing some of the key undergoing changes to our library from earlier versions: +### v1.3.0 + + * Finalized all required build system and JAVA binding changes to release the + UPM libraries for Android Things targets + * Enhanced the modules for lsm303 and tmp006 to support newer variants of the + chips + * Fixed Node.js detection on Ubuntu when installed with apt using official + packages + * Minor documentation changes + * New sensors: lsm303agr, lsm303d, veml6070, tca9548a, rn2903 + ### v1.2.0 * Improved JAVA binding compiler compatibility and added JAVA interfaces that