Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ashuang committed Nov 19, 2014
1 parent a97c984 commit 75c3c6f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 5 deletions.
30 changes: 30 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
Nov 18, 2014
============

Release 1.2.0

This release adds charting to lcm-spy (Andy Barry) and updates the lcm-spy GUI.
This release also marks the official migration of LCM to GitHub. The new site
is https://github.com/lcm-proj/lcm

- C / C++
- Use select() instead of poll() in lcm_mpudpm.c
- lcm-spy
- Add sparklines and charting (Andy Barry), via JChart2d
- Python
- Fix setup.py
- Java
- TCPService convert mutex to read/write lock. Reduces deadlock when
send/receive buffers are full.
- Make TCPService interruptible (closes googlecode issue #94)
- lcm-gen
- Fix regression for comments appearing in various places in a type
definition file (closes googlecode issue #97)
- misc
- Build system cleanups
- Add more unit tests, cleanup existing tests.
- Documentation fixes.
- OS/X
- reduce max packet sizes (closes googlecode issue #99)
- fix test/cpp/Makefile

Aug 19, 2014
============

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.50)
AC_INIT([lcm], 1.1.2)
AC_INIT([lcm], 1.2.0)
AC_CONFIG_SRCDIR([lcm/lcm.h])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE([foreign tar-ustar])
Expand All @@ -23,7 +23,7 @@ dnl 3. If the interface changes consist solely of additions, increment AGE.
dnl 4. If the interface has removed or changed elements, set AGE to 0.
dnl ---------------------------------------------------------------------------
LIBLCM_AGE=3
LIBLCM_REVISION=2
LIBLCM_REVISION=3
LIBLCM_CURRENT=4
CHART2D_VERSION=3.2.2
AC_SUBST(LIBLCM_AGE)
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.1.2",
setup(name="lcm", version="1.2.0",
ext_modules=[pylcm_extension],
packages=["lcm"])
4 changes: 2 additions & 2 deletions lcm/lcm.h
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@ int lcm_subscription_set_queue_capacity(lcm_subscription_t* handler, int num_mes
#define LCM_MAJOR_VERSION 1

/// LCM release minor version - the Y in version X.Y.Z
#define LCM_MINOR_VERSION 1
#define LCM_MINOR_VERSION 2

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

/**
* @}
Expand Down

0 comments on commit 75c3c6f

Please sign in to comment.