From: Thomas Jarosch Date: Mon, 27 Apr 2009 20:07:21 +0000 (+0200) Subject: Increase version and update changelog X-Git-Tag: v0.16rc1^0 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=e81598e4752debbc926108e4526b124f06e063b6 Increase version and update changelog --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 9203c82..29586e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Project project(libftdi) set(MAJOR_VERSION 0) -set(MINOR_VERSION 15) +set(MINOR_VERSION 16) set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}) SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}") diff --git a/ChangeLog b/ChangeLog index 86dda1f..b8534a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -New in 0.16 - 2009-XX-XX +New in 0.16 - 2009-04-27 ------------------------ * Relicensed C++ wrapper under GPLv2 + linking exception (Marek Vavruša and Intra2net) * Support for FT2232H and FT4232H (David Challis and Intra2net) diff --git a/README b/README index 4e1d0ea..11348d2 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -------------------------------------------------------------------- -libftdi version 0.15 +libftdi version 0.16 -------------------------------------------------------------------- libftdi - A library (using libusb) to talk to FTDI's UART/FIFO chips @@ -20,8 +20,15 @@ the initial C++ wrapper implementation. Changes ------- -* Full C++ wrapper. Needs boost (Marek Vavruša and Intra2net) -* cmake rules (Marek Vavruša) +* Relicensed C++ wrapper under GPLv2 + linking exception (Marek Vavruša and Intra2net) +* Support for FT2232H and FT4232H (David Challis and Intra2net) +* Support for mingw cross compile (Uwe Bonnes) +* Python bindings and minor autoconf cleanup (Tarek Heiland) +* Code cleanup in various places (Intra2net) +* Fixed ftdi_read_chipid in some cases (Matthias Richter) +* eeprom decode function and small cleanups (Marius Kintel) +* cmake system improvements (Marius Kintel and Intra2net) +* Fix compilation in -ansi -pedantic mode (Matthias Janke) You'll find the newest version of libftdi at: http://www.intra2net.com/en/developer/libftdi diff --git a/configure.in b/configure.in index 4840777..3b3f96a 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -AC_INIT(libftdi, 0.15) +AC_INIT(libftdi, 0.16) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) diff --git a/ftdipp/Makefile.am b/ftdipp/Makefile.am index e80b15e..f1f9907 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 16:0:15 $(all_libraries) @BOOST_LDFLAGS@ +libftdipp_la_LDFLAGS = -version-info 17:0:16 $(all_libraries) @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 b52d50f..f550b06 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,6 +10,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 16:0:15 $(all_libraries) +libftdi_la_LDFLAGS = -version-info 17:0:16 $(all_libraries) EXTRA_DIST = CMakeLists.txt