Skip to content

Commit

Permalink
bump version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Demo User committed Aug 24, 2018
1 parent 0159c41 commit 91470ef
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.0.2
* Add function rc_filter_duplicate()
* add macro RC_VECTOR_INITIALIZER
* add macro RC_MATRIX_INITIALIZER
* add macro RC_RINGBUF_INITIALIZER
* add macro RC_FILTER_INITIALIZER
* add macro RC_KALMAN_INITIALIZER
* fix broken rc_kalman_alloc_ekf and rc_kalman_update_ekf

1.0.1
* Support pwm driver changes introduced in 4.14.61-ti-r68
* documentation improvements
Expand Down
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
librobotcontrol (1.0.2) stable; urgency=low
* Add function rc_filter_duplicate()
* add macro RC_VECTOR_INITIALIZER
* add macro RC_MATRIX_INITIALIZER
* add macro RC_RINGBUF_INITIALIZER
* add macro RC_FILTER_INITIALIZER
* add macro RC_KALMAN_INITIALIZER
* fix broken rc_kalman_alloc_ekf and rc_kalman_update_ekf
-- James Strawson <james@strawsondesign.com> Thu, 23 Aug 2018 16:58:00 +0000


librobotcontrol (1.0.1) stable; urgency=low
* Support pwm driver changes introduced in 4.14.61-ti-r68
* documentation improvements
Expand Down
2 changes: 1 addition & 1 deletion library/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BUILDDIR := build
INCLUDEDIR := include
SHORTNAME := librobotcontrol.so
SONAME := librobotcontrol.so.1
FULLNAME := librobotcontrol.so.1.0.1
FULLNAME := librobotcontrol.so.1.0.2
TARGET := $(LIBDIR)/$(FULLNAME)
RC_VAR_DIR := var/lib/robotcontrol

Expand Down
2 changes: 1 addition & 1 deletion library/include/rc/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extern "C" {

#define RC_LIB_VERSION_MAJOR 1
#define RC_LIB_VERSION_MINOR 0
#define RC_LIB_VERSION_PATCH 1
#define RC_LIB_VERSION_PATCH 2
#define RC_LIB_VERSION_HEX ((RC_LIB_VERSION_MAJOR << 16) | \
(RC_LIB_VERSION_MINOR << 8) | \
(RC_LIB_VERSION_PATCH))
Expand Down

0 comments on commit 91470ef

Please sign in to comment.