Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuang committed Mar 30, 2016
1 parent 77726c8 commit 7d34ffe
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
April 29, 2016
==============

Release 1.3.1

This is primarily a bugfix and maintenance release.

- Java
- Fix lcm-java automake for out of source builds
- Lua
- Add support for Lua 5.3
- Python
- Fix python LCM code generation when a package is not specified
- General
- Minor documentation updates

Oct 28, 2015
============

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.3.0)
AC_INIT([lcm], 1.3.1)
AC_CONFIG_SRCDIR([lcm/lcm.h])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE([foreign tar-ustar])
Expand Down
2 changes: 1 addition & 1 deletion lcm-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@
libraries=libraries,
extra_compile_args=extra_compile_args)

setup(name="lcm", version="1.3.0",
setup(name="lcm", version="1.3.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 3

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

/**
* @}
Expand Down

0 comments on commit 7d34ffe

Please sign in to comment.