Skip to content

Commit 2d24670

Browse files
author
Demo User
committed
bump version to 1.0.4
1 parent 02ec8ca commit 2d24670

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.4
2+
* fix missing stddef.h include in i2c.h
3+
* add kmartin36's PRU encoder robustness improvement
4+
* fix rc_startup_routine not completing in some configurations
5+
16
1.0.3
27
* correct default pinmux value for UART and SPI to those functions
38
* fix string length error in rc_spi_loopback_test

debian/changelog

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

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.3
8+
FULLNAME := librobotcontrol.so.1.0.4
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 3
23+
#define RC_LIB_VERSION_PATCH 4
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)