Skip to content

Commit

Permalink
bump version to 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Demo User committed Oct 5, 2018
1 parent c002c04 commit f61b0ee
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.0.3
* correct default pinmux value for UART and SPI to those functions
* fix string length error in rc_spi_loopback_test
* add minimum realization case for PI and P controller in rc_filter_pid
* fix compass heading in 2 DMP orientation options
* fix uninitialized matrix in rc_altitude example
* fix spi randomly breaking due to non-initialized struct
* small documentation improvements

1.0.2
* Add function rc_filter_duplicate()
* add macro RC_VECTOR_INITIALIZER
Expand Down
12 changes: 11 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
librobotcontrol (1.0.3) stable; urgency=low
* correct default pinmux value for UART and SPI to those functions
* fix string length error in rc_spi_loopback_test
* add minimum realization case for PI and P controller in rc_filter_pid
* fix compass heading in 2 DMP orientation options
* fix uninitialized matrix in rc_altitude example
* fix spi randomly breaking due to non-initialized struct
* small documentation improvements
-- James Strawson <[email protected]> Fri, 5 Oct 2018 13:59:00 +0000


librobotcontrol (1.0.2) stable; urgency=low
* Add function rc_filter_duplicate()
* add macro RC_VECTOR_INITIALIZER
Expand All @@ -15,7 +26,6 @@ librobotcontrol (1.0.1) stable; urgency=low
-- James Strawson <[email protected]> Thu, 9 Aug 2018 16:58:00 +0000



librobotcontrol (1.0.0) stable; urgency=low
* finally, v1.0.0 release!
* rename package to librobotcontrol
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.2
FULLNAME := librobotcontrol.so.1.0.3
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 2
#define RC_LIB_VERSION_PATCH 3
#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 f61b0ee

Please sign in to comment.