Skip to content

Commit f61b0ee

Browse files
author
Demo User
committed
bump version to 1.0.3
1 parent c002c04 commit f61b0ee

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.0.3
2+
* correct default pinmux value for UART and SPI to those functions
3+
* fix string length error in rc_spi_loopback_test
4+
* add minimum realization case for PI and P controller in rc_filter_pid
5+
* fix compass heading in 2 DMP orientation options
6+
* fix uninitialized matrix in rc_altitude example
7+
* fix spi randomly breaking due to non-initialized struct
8+
* small documentation improvements
9+
110
1.0.2
211
* Add function rc_filter_duplicate()
312
* add macro RC_VECTOR_INITIALIZER

debian/changelog

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
librobotcontrol (1.0.3) stable; urgency=low
2+
* correct default pinmux value for UART and SPI to those functions
3+
* fix string length error in rc_spi_loopback_test
4+
* add minimum realization case for PI and P controller in rc_filter_pid
5+
* fix compass heading in 2 DMP orientation options
6+
* fix uninitialized matrix in rc_altitude example
7+
* fix spi randomly breaking due to non-initialized struct
8+
* small documentation improvements
9+
-- James Strawson <[email protected]> Fri, 5 Oct 2018 13:59:00 +0000
10+
11+
112
librobotcontrol (1.0.2) stable; urgency=low
213
* Add function rc_filter_duplicate()
314
* add macro RC_VECTOR_INITIALIZER
@@ -15,7 +26,6 @@ librobotcontrol (1.0.1) stable; urgency=low
1526
-- James Strawson <[email protected]> Thu, 9 Aug 2018 16:58:00 +0000
1627

1728

18-
1929
librobotcontrol (1.0.0) stable; urgency=low
2030
* finally, v1.0.0 release!
2131
* rename package to librobotcontrol

library/Makefile

+1-1
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.2
8+
FULLNAME := librobotcontrol.so.1.0.3
99
TARGET := $(LIBDIR)/$(FULLNAME)
1010
RC_VAR_DIR := var/lib/robotcontrol
1111

library/include/rc/version.h

+1-1
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 2
23+
#define RC_LIB_VERSION_PATCH 3
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)