Skip to content

Commit

Permalink
bump version to 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Demo User committed Nov 9, 2018
1 parent 02ec8ca commit 2d24670
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.0.4
* fix missing stddef.h include in i2c.h
* add kmartin36's PRU encoder robustness improvement
* fix rc_startup_routine not completing in some configurations

1.0.3
* correct default pinmux value for UART and SPI to those functions
* fix string length error in rc_spi_loopback_test
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
librobotcontrol (1.0.4) stable; urgency=low
* fix missing stddef.h include in i2c.h
* add kmartin36's PRU encoder robustness improvement
* fix rc_startup_routine not completing in some configurations
-- James Strawson <[email protected]> Thu, 8 Nov 2018 20:24:00 +0000


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
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.3
FULLNAME := librobotcontrol.so.1.0.4
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 3
#define RC_LIB_VERSION_PATCH 4
#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 2d24670

Please sign in to comment.