Skip to content

Commit 659d7a9

Browse files
committed
Prepare 1.4.1 version
1 parent bb1fc9c commit 659d7a9

6 files changed

Lines changed: 41 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PROJECT(libnfc C)
22
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
33
SET(VERSION_MAJOR "1")
44
SET(VERSION_MINOR "4")
5-
SET(VERSION_PATCH "0")
5+
SET(VERSION_PATCH "1")
66

77
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
88

ChangeLog

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Feb 1, 2010 - 1.4.1
2+
-------------------
3+
4+
Fixes:
5+
- libnfc: fix missing pn53x-tamashell-scripts in generated tarball. (Thanks to usermeister)
6+
- buses/uart: improved UART communication on POSIX systems: slower devices can be detected and high speed devices works better
7+
- buses/uart: serial autoprobe now skips invalid devices but checks all ports in the list
8+
- drivers/pn53x_usb: prevent from stack corruption when using PN533-based device and add errors handling for ReadRegister and WriteRegister
9+
- drivers/arygon: fix polling on ARYGON devices
10+
- examples/nfc-emulate-tag: switch off easy framing when we are not emulating a ISO14443-4 target
11+
- examples/nfc-mfclassic: fix crash when file cannot be opened for writing
12+
- examples/nfc-mfultralight: fix 7 bytes UID display
13+
14+
Improvements:
15+
- libnfc: add a "troubleshooting" section in README to document ACR122 problems with pcsclite.
16+
- libnfc: inform user if target UID can not be emulated
17+
- example/nfc-mfultralight: handle lock page writing
18+
- examples/nfc-emulate-tag: handle HALT & READ
19+
- tests: add register access test
20+
21+
Experimental: Windows platform support (Thanks to Glenn Ergeerts)
22+
23+
124
Nov 17, 2010 - 1.4.0
225
--------------------
326

NEWS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
New in 1.4.1:
2+
3+
API Changes
4+
5+
* Types
6+
- 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)
7+
8+
9+
110
New in 1.4.0:
211

312
API Changes

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# General init
22

33
# /!\ Don't forget to update 'windows/Makefile' too /!\
4-
AC_INIT(libnfc, 1.4.0, info@libnfc.org)
4+
AC_INIT(libnfc, 1.4.1, info@libnfc.org)
55

66
AC_CONFIG_MACRO_DIR([m4])
77

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
libnfc (1.4.1-0) unstable; urgency=low
2+
3+
* New upstream release.
4+
5+
-- Romuald Conty <rconty@il4p.fr> Tue, 1 Feb 2011 10:42:42 +0100
6+
17
libnfc (1.4.0-0) unstable; urgency=low
28

39
* New upstream release.

libnfc/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ INCLUDES = $(all_includes) $(LIBNFC_CFLAGS)
66
noinst_HEADERS = chips.h buses.h drivers.h mirror-subr.h
77
lib_LTLIBRARIES = libnfc.la
88
libnfc_la_SOURCES = nfc.c iso14443-subr.c mirror-subr.c
9-
libnfc_la_LDFLAGS = -no-undefined -version-info=0:0:0
9+
libnfc_la_LDFLAGS = -no-undefined -version-info=1:0:1
1010
libnfc_la_CFLAGS = @DRIVERS_CFLAGS@
1111
libnfc_la_LIBADD = \
1212
$(top_builddir)/libnfc/chips/libnfcchips.la \

0 commit comments

Comments
 (0)