Prepare 1.4.2 version
This commit is contained in:
parent
5df49391a9
commit
b4d23795de
5 changed files with 31 additions and 3 deletions
|
@ -2,7 +2,7 @@ PROJECT(libnfc C)
|
|||
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
|
||||
SET(VERSION_MAJOR "1")
|
||||
SET(VERSION_MINOR "4")
|
||||
SET(VERSION_PATCH "1")
|
||||
SET(VERSION_PATCH "2")
|
||||
|
||||
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
|
||||
|
||||
|
|
22
ChangeLog
22
ChangeLog
|
@ -1,3 +1,25 @@
|
|||
Feb 21, 2010 - 1.4.2
|
||||
--------------------
|
||||
|
||||
Fixes:
|
||||
- libnfc: fgets instead of getline, bring MacOSX / BSD without glibc alive
|
||||
- libnfc: add missing CMake files to generated tarball needed by windows users (Thanks to Glenn)
|
||||
- drivers/pn532_uart: fix pn532 wakeup response handling
|
||||
- buses/uart: prevent from retrieving more than buffer length (potential buffer overflow)
|
||||
- buses/uart: intent to speed up interface
|
||||
- nfc-emulate-uid: use a correct UID
|
||||
- nfc-mfclassic: fixes a segfault when using only 1 argument
|
||||
|
||||
Improvements:
|
||||
- libnfc: silent some compilation warnings
|
||||
- drivers/pn533_usb: support new device: ASK / LoGO. (Thanks to ASK for sending one sample)
|
||||
- chips/pn53x: set register directly if mask cover whole value.
|
||||
- pn53x-tamashell: accepts script as arg, this makes shebang possible
|
||||
- pn53x-tamashell: add pause command & doc
|
||||
- documentation: add a README-Windows.txt file
|
||||
- documentation: add more pcsc-lite related instruction in README
|
||||
|
||||
|
||||
Feb 1, 2010 - 1.4.1
|
||||
-------------------
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# General init
|
||||
|
||||
# /!\ Don't forget to update 'windows/Makefile' too /!\
|
||||
AC_INIT(libnfc, 1.4.1, info@libnfc.org)
|
||||
AC_INIT(libnfc, 1.4.2, info@libnfc.org)
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
libnfc (1.4.2-0) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Romuald Conty <rconty@il4p.fr> Tue, 21 Feb 2011 11:42:42 +0100
|
||||
|
||||
libnfc (1.4.1-0) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
|
|
@ -6,7 +6,7 @@ INCLUDES = $(all_includes) $(LIBNFC_CFLAGS)
|
|||
noinst_HEADERS = chips.h buses.h drivers.h mirror-subr.h
|
||||
lib_LTLIBRARIES = libnfc.la
|
||||
libnfc_la_SOURCES = nfc.c iso14443-subr.c mirror-subr.c
|
||||
libnfc_la_LDFLAGS = -no-undefined -version-info=1:0:1
|
||||
libnfc_la_LDFLAGS = -no-undefined -version-info 1:0:0
|
||||
libnfc_la_CFLAGS = @DRIVERS_CFLAGS@
|
||||
libnfc_la_LIBADD = \
|
||||
$(top_builddir)/libnfc/chips/libnfcchips.la \
|
||||
|
|
Loading…
Reference in a new issue