From: Thomas Jarosch Date: Fri, 20 May 2011 14:35:39 +0000 (+0200) Subject: Increase version for 0.19 release X-Git-Tag: v0.19~2 X-Git-Url: http://developer.intra2net.com/git/?a=commitdiff_plain;h=d66c6295e50c2011cbbba201012d871f2a40370a;p=libftdi Increase version for 0.19 release --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 090165d..339fc54 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Project project(libftdi) set(MAJOR_VERSION 0) -set(MINOR_VERSION 18) +set(MINOR_VERSION 19) set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}) SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}") diff --git a/README b/README index 61a496b..9897ccd 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -------------------------------------------------------------------- -libftdi version 0.18 +libftdi version 0.19 -------------------------------------------------------------------- libftdi - A library (using libusb) to talk to FTDI's UART/FIFO chips @@ -20,19 +20,17 @@ the initial C++ wrapper implementation. Changes ------- -* Add ftdi_eeprom_free() to free allocated memory in eeprom (Wilfried Holzke) -* More generic error message for the FTDI kernel driver (Intra2net) -* Honor CPPFLAGS in python wrapper build (Alexander Lehmann) -* cmake: Fix package creation on 32-bit machines (Uwe Bonnes) -* Fix swig argument constraints (Intra2net) -* Don't segfault if device is closed or ftdi context is invalid (Intra2net) -* Ability to disable build of examples / documentation (Mike Frysinger and Intra2net) -* Fix typo in python wrapper build (Mike Frysinger) -* Autoconf build system improvements (Mike Frysinger) +* Correct ftdi_poll_modem_status() result code (Tom Saunders) +* cmake build system improvements (Evgeny Sinelnikov) +* Fix uninitialized memory access in async mode (Intra2net) +* Support for FT232R eeprom features (Hermann Kraus) +* Fix size returned by ftdi_read_data (Hermann Kraus) +* C++ wrapper: Fix infinite recursion in set_bitmode (Intra2net) +* Improvements to the python wrapper (Flynn Marquardt and Chris Zeh) You'll find the newest version of libftdi at: http://www.intra2net.com/en/developer/libftdi -------------------------------------------------------------------- -www.intra2net.com 2003-2010 Intra2net AG +www.intra2net.com 2003-2011 Intra2net AG -------------------------------------------------------------------- diff --git a/configure.in b/configure.in index 780ddc2..ea399f2 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -AC_INIT(libftdi, 0.18) +AC_INIT(libftdi, 0.19) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) diff --git a/ftdipp/Makefile.am b/ftdipp/Makefile.am index f645b42..30e2478 100644 --- a/ftdipp/Makefile.am +++ b/ftdipp/Makefile.am @@ -9,7 +9,7 @@ libftdipp_la_SOURCES = ftdi.cpp # Note: If you specify a:b:c as the version in the next line, # the library that is made has version (a-c).c.b. In this # example, the version is 2.1.2. (3:2:1) -libftdipp_la_LDFLAGS = -version-info 19:0:18 @BOOST_LDFLAGS@ +libftdipp_la_LDFLAGS = -version-info 20:0:19 @BOOST_LDFLAGS@ libftdipp_la_LIBADD = $(top_builddir)/src/libftdi.la EXTRA_DIST = CMakeLists.txt diff --git a/src/Makefile.am b/src/Makefile.am index 6305019..6243941 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,6 +6,6 @@ include_HEADERS = ftdi.h # Note: If you specify a:b:c as the version in the next line, # the library that is made has version (a-c).c.b. In this # example, the version is 2.1.2. (3:2:1) -libftdi_la_LDFLAGS = -version-info 19:0:18 +libftdi_la_LDFLAGS = -version-info 20:0:19 EXTRA_DIST = CMakeLists.txt