Prepare 1.4.1 version
This commit is contained in:
parent
bb1fc9cd87
commit
659d7a9de1
6 changed files with 41 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 "0")
|
||||
SET(VERSION_PATCH "1")
|
||||
|
||||
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
|
||||
|
||||
|
|
23
ChangeLog
23
ChangeLog
|
@ -1,3 +1,26 @@
|
|||
Feb 1, 2010 - 1.4.1
|
||||
-------------------
|
||||
|
||||
Fixes:
|
||||
- libnfc: fix missing pn53x-tamashell-scripts in generated tarball. (Thanks to usermeister)
|
||||
- buses/uart: improved UART communication on POSIX systems: slower devices can be detected and high speed devices works better
|
||||
- buses/uart: serial autoprobe now skips invalid devices but checks all ports in the list
|
||||
- drivers/pn53x_usb: prevent from stack corruption when using PN533-based device and add errors handling for ReadRegister and WriteRegister
|
||||
- drivers/arygon: fix polling on ARYGON devices
|
||||
- examples/nfc-emulate-tag: switch off easy framing when we are not emulating a ISO14443-4 target
|
||||
- examples/nfc-mfclassic: fix crash when file cannot be opened for writing
|
||||
- examples/nfc-mfultralight: fix 7 bytes UID display
|
||||
|
||||
Improvements:
|
||||
- libnfc: add a "troubleshooting" section in README to document ACR122 problems with pcsclite.
|
||||
- libnfc: inform user if target UID can not be emulated
|
||||
- example/nfc-mfultralight: handle lock page writing
|
||||
- examples/nfc-emulate-tag: handle HALT & READ
|
||||
- tests: add register access test
|
||||
|
||||
Experimental: Windows platform support (Thanks to Glenn Ergeerts)
|
||||
|
||||
|
||||
Nov 17, 2010 - 1.4.0
|
||||
--------------------
|
||||
|
||||
|
|
9
NEWS
9
NEWS
|
@ -1,3 +1,12 @@
|
|||
New in 1.4.1:
|
||||
|
||||
API Changes
|
||||
|
||||
* Types
|
||||
- New error: ETGUIDNOTSUP raised when UID is not 4 bytes long or does not start with 0x08 (Security restriction present in the NXP PN53x chips)
|
||||
|
||||
|
||||
|
||||
New in 1.4.0:
|
||||
|
||||
API Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# General init
|
||||
|
||||
# /!\ Don't forget to update 'windows/Makefile' too /!\
|
||||
AC_INIT(libnfc, 1.4.0, info@libnfc.org)
|
||||
AC_INIT(libnfc, 1.4.1, info@libnfc.org)
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
libnfc (1.4.1-0) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Romuald Conty <rconty@il4p.fr> Tue, 1 Feb 2011 10:42:42 +0100
|
||||
|
||||
libnfc (1.4.0-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=0:0:0
|
||||
libnfc_la_LDFLAGS = -no-undefined -version-info=1:0:1
|
||||
libnfc_la_CFLAGS = @DRIVERS_CFLAGS@
|
||||
libnfc_la_LIBADD = \
|
||||
$(top_builddir)/libnfc/chips/libnfcchips.la \
|
||||
|
|
Loading…
Reference in a new issue