Skip to content

Commit 8ccd481

Browse files
committed
Release 1.2.1
1 parent 1ab7e89 commit 8ccd481

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
lines changed

NEWS

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Jan 21, 2015
2+
============
3+
4+
Release 1.2.1
5+
6+
This is a bugfix and maintenance release.
7+
8+
- Documentation updates
9+
- lcm-spy
10+
- Misc bugfixes
11+
- Fix bug where lcm-spy did not display content of some messages (Johan
12+
Widen)
13+
- Remove jchart2d jar file from INSTALLED_CLASSPATH variable
14+
115
Nov 18, 2014
216
============
317

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ(2.50)
2-
AC_INIT([lcm], 1.2.0)
2+
AC_INIT([lcm], 1.2.1)
33
AC_CONFIG_SRCDIR([lcm/lcm.h])
44
AC_CANONICAL_SYSTEM
55
AM_INIT_AUTOMAKE([foreign tar-ustar])

docs/release_checklist

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
$ make distcheck
1818
7. Take the resulting tarball, extract it, build it, install it, make sure
1919
the basic executables run.
20+
$ tar xzvf lcm-X.Y.Z.tar.gz
2021
$ cd lcm-X.Y.Z
2122
$ ./configure
2223
$ make
@@ -28,6 +29,8 @@
2829
$ cd ../test
2930
$ make clean
3031
$ make
32+
$ ./run_unit_tests.py
33+
$ ./run_client_server_tests.py
3134
2. Repeat unit tests on:
3235
* GNU/Linux
3336
* OS X

lcm-python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,6 @@
9191
libraries=libraries,
9292
extra_compile_args=extra_compile_args)
9393

94-
setup(name="lcm", version="1.2.0",
94+
setup(name="lcm", version="1.2.1",
9595
ext_modules=[pylcm_extension],
9696
packages=["lcm"])

lcm/lcm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ int lcm_subscription_set_queue_capacity(lcm_subscription_t* handler, int num_mes
351351
#define LCM_MINOR_VERSION 2
352352

353353
/// LCM release micro version - the Z in version X.Y.Z
354-
#define LCM_MICRO_VERSION 0
354+
#define LCM_MICRO_VERSION 1
355355

356356
/**
357357
* @}

test/java/build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
</target>
5252

5353
<target name="clean">
54-
<delete>
54+
<delete failonerror="false">
5555
<fileset dir="build" includes="**/*.class"/>
5656
<fileset dir="." includes="lcmtest.jar"/>
5757
</delete>

0 commit comments

Comments
 (0)