Skip to content

Commit 91470ef

Browse files
author
Demo User
committed
bump version to 1.0.2
1 parent 0159c41 commit 91470ef

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.0.2
2+
* Add function rc_filter_duplicate()
3+
* add macro RC_VECTOR_INITIALIZER
4+
* add macro RC_MATRIX_INITIALIZER
5+
* add macro RC_RINGBUF_INITIALIZER
6+
* add macro RC_FILTER_INITIALIZER
7+
* add macro RC_KALMAN_INITIALIZER
8+
* fix broken rc_kalman_alloc_ekf and rc_kalman_update_ekf
9+
110
1.0.1
211
* Support pwm driver changes introduced in 4.14.61-ti-r68
312
* documentation improvements

debian/changelog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
librobotcontrol (1.0.2) stable; urgency=low
2+
* Add function rc_filter_duplicate()
3+
* add macro RC_VECTOR_INITIALIZER
4+
* add macro RC_MATRIX_INITIALIZER
5+
* add macro RC_RINGBUF_INITIALIZER
6+
* add macro RC_FILTER_INITIALIZER
7+
* add macro RC_KALMAN_INITIALIZER
8+
* fix broken rc_kalman_alloc_ekf and rc_kalman_update_ekf
9+
-- James Strawson <[email protected]> Thu, 23 Aug 2018 16:58:00 +0000
10+
11+
112
librobotcontrol (1.0.1) stable; urgency=low
213
* Support pwm driver changes introduced in 4.14.61-ti-r68
314
* documentation improvements

library/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ BUILDDIR := build
55
INCLUDEDIR := include
66
SHORTNAME := librobotcontrol.so
77
SONAME := librobotcontrol.so.1
8-
FULLNAME := librobotcontrol.so.1.0.1
8+
FULLNAME := librobotcontrol.so.1.0.2
99
TARGET := $(LIBDIR)/$(FULLNAME)
1010
RC_VAR_DIR := var/lib/robotcontrol
1111

library/include/rc/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ extern "C" {
2020

2121
#define RC_LIB_VERSION_MAJOR 1
2222
#define RC_LIB_VERSION_MINOR 0
23-
#define RC_LIB_VERSION_PATCH 1
23+
#define RC_LIB_VERSION_PATCH 2
2424
#define RC_LIB_VERSION_HEX ((RC_LIB_VERSION_MAJOR << 16) | \
2525
(RC_LIB_VERSION_MINOR << 8) | \
2626
(RC_LIB_VERSION_PATCH))

0 commit comments

Comments
 (0)