From 104555b9081bdd3f0aa0f3889043e7daa46fd8e5 Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Fri, 16 May 2014 17:10:34 +0100 Subject: [PATCH] cmake: version bump due to API change Signed-off-by: Brendan Le Foll --- CMakeLists.txt | 2 +- README.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33c85b2..32693a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ include (GetGitRevisionDescription) git_describe (VERSION "--tags") if ("x_${VERSION}" STREQUAL "x_GIT-NOTFOUND") message (WARNING " - Install git to compile a production libmaa!") - set (VERSION "v0.2.3-dirty") + set (VERSION "v0.2.4-dirty") endif () message (INFO " - MAA Version ${VERSION}") diff --git a/README.md b/README.md index b2cf042..5f6d96e 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,15 @@ Python html documentation can be generated with **make pydoc** When the API breaks in a small way there will be a changelog listed here +**0.2.4** + * All maa_ contexts now are pointers to the actual struct which is not + delcared in the header. The only end user change is that instead of + returning a type maa_gpio_context pointer maa_gpio_init() now returns a + maa_gpio_context (which is actually a pointer to struct _gpio internally). + * C++ API is available, use the .hpp headers and add stdc++ to the linker + flags. + * Initial SPI implementation is provided + **0.2.3** * maa_aio_read_u16() -> maa_aio_read() * maa_aio_read() now returns a uint16_t instead of an unsigned int -- 2.7.4