diff --git a/CHANGELOG b/CHANGELOG index 5d9e143b..6eb0b21d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +1.0.1 + * Support pwm driver changes introduced in 4.14.61-ti-r68 + * documentation improvements + 1.0.0 * finally, v1.0.0 release! * rename package to librobotcontrol diff --git a/debian/changelog b/debian/changelog index c770a3b7..4e210503 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +librobotcontrol (1.0.1) stable; urgency=low + * Support pwm driver changes introduced in 4.14.61-ti-r68 + * documentation improvements + -- James Strawson Thu, 9 Aug 2018 16:58:00 +0000 + + + librobotcontrol (1.0.0) stable; urgency=low * finally, v1.0.0 release! * rename package to librobotcontrol diff --git a/library/Makefile b/library/Makefile index 2bf96860..086720cb 100644 --- a/library/Makefile +++ b/library/Makefile @@ -5,7 +5,7 @@ BUILDDIR := build INCLUDEDIR := include SHORTNAME := librobotcontrol.so SONAME := librobotcontrol.so.1 -FULLNAME := librobotcontrol.so.1.0.0 +FULLNAME := librobotcontrol.so.1.0.1 TARGET := $(LIBDIR)/$(FULLNAME) RC_VAR_DIR := var/lib/robotcontrol diff --git a/library/include/rc/version.h b/library/include/rc/version.h index 5ead049c..6e8162eb 100644 --- a/library/include/rc/version.h +++ b/library/include/rc/version.h @@ -20,7 +20,7 @@ extern "C" { #define RC_LIB_VERSION_MAJOR 1 #define RC_LIB_VERSION_MINOR 0 -#define RC_LIB_VERSION_PATCH 0 +#define RC_LIB_VERSION_PATCH 1 #define RC_LIB_VERSION_HEX ((RC_LIB_VERSION_MAJOR << 16) | \ (RC_LIB_VERSION_MINOR << 8) | \ (RC_LIB_VERSION_PATCH))