Skip to content

Commit

Permalink
Release 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuang committed Jan 22, 2015
1 parent 1ab7e89 commit 8ccd481
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
14 changes: 14 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Jan 21, 2015
============

Release 1.2.1

This is a bugfix and maintenance release.

- Documentation updates
- lcm-spy
- Misc bugfixes
- Fix bug where lcm-spy did not display content of some messages (Johan
Widen)
- Remove jchart2d jar file from INSTALLED_CLASSPATH variable

Nov 18, 2014
============

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.50)
AC_INIT([lcm], 1.2.0)
AC_INIT([lcm], 1.2.1)
AC_CONFIG_SRCDIR([lcm/lcm.h])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE([foreign tar-ustar])
Expand Down
3 changes: 3 additions & 0 deletions docs/release_checklist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
$ make distcheck
7. Take the resulting tarball, extract it, build it, install it, make sure
the basic executables run.
$ tar xzvf lcm-X.Y.Z.tar.gz
$ cd lcm-X.Y.Z
$ ./configure
$ make
Expand All @@ -28,6 +29,8 @@
$ cd ../test
$ make clean
$ make
$ ./run_unit_tests.py
$ ./run_client_server_tests.py
2. Repeat unit tests on:
* GNU/Linux
* OS X
Expand Down
2 changes: 1 addition & 1 deletion lcm-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@
libraries=libraries,
extra_compile_args=extra_compile_args)

setup(name="lcm", version="1.2.0",
setup(name="lcm", version="1.2.1",
ext_modules=[pylcm_extension],
packages=["lcm"])
2 changes: 1 addition & 1 deletion lcm/lcm.h
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ int lcm_subscription_set_queue_capacity(lcm_subscription_t* handler, int num_mes
#define LCM_MINOR_VERSION 2

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

/**
* @}
Expand Down
2 changes: 1 addition & 1 deletion test/java/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</target>

<target name="clean">
<delete>
<delete failonerror="false">
<fileset dir="build" includes="**/*.class"/>
<fileset dir="." includes="lcmtest.jar"/>
</delete>
Expand Down

0 comments on commit 8ccd481

Please sign in to comment.