cmake: version bump due to API change v0.2.4
authorBrendan Le Foll <brendan.le.foll@intel.com>
Fri, 16 May 2014 16:10:34 +0000 (17:10 +0100)
committerBrendan Le Foll <brendan.le.foll@intel.com>
Fri, 16 May 2014 16:10:34 +0000 (17:10 +0100)
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
CMakeLists.txt
README.md

index 33c85b2..32693a8 100644 (file)
@@ -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}")
index b2cf042..5f6d96e 100644 (file)
--- 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