Prepare 1.8.0 version
This commit is contained in:
parent
5c3c468a6a
commit
f02ff51449
6 changed files with 22 additions and 6 deletions
|
@ -7,8 +7,8 @@ endif ()
|
|||
project (libnfc C)
|
||||
|
||||
SET(VERSION_MAJOR "1")
|
||||
SET(VERSION_MINOR "7")
|
||||
SET(VERSION_PATCH "2")
|
||||
SET(VERSION_MINOR "8")
|
||||
SET(VERSION_PATCH "0")
|
||||
|
||||
SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
|
||||
|
||||
|
|
12
ChangeLog
12
ChangeLog
|
@ -1,4 +1,14 @@
|
|||
May 21, 2020 - 1.7.2
|
||||
May 22, 2020 - 1.8.0
|
||||
--------------------
|
||||
|
||||
Fixes:
|
||||
- Restore nfc_modulation_type enum order to keep compatibility with libnfc 1.7.1
|
||||
|
||||
Changes:
|
||||
- Bump revision due to changes in API introduced in v1.7.2
|
||||
- Bump library version to 6.0.0
|
||||
|
||||
May 21, 2020 - 1.7.2 (avoid using it, incompatible with 1.7.1)
|
||||
--------------------
|
||||
|
||||
Fixes:
|
||||
|
|
6
NEWS.md
6
NEWS.md
|
@ -1,3 +1,9 @@
|
|||
New in 1.8.0:
|
||||
|
||||
API Changes:
|
||||
- Restore nfc_modulation_type enum order to keep compatibility with libnfc 1.7.1
|
||||
- Bump library version to 6.0.0
|
||||
|
||||
New in 1.7.2:
|
||||
|
||||
Drivers:
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# General init
|
||||
|
||||
# /!\ Don't forget to update 'CMakeLists.txt' too /!\
|
||||
AC_INIT([libnfc],[1.7.2],[nfc-tools@googlegroups.com])
|
||||
AC_INIT([libnfc],[1.8.0],[nfc-tools@googlegroups.com])
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
|
|
|
@ -83,7 +83,7 @@ IF(LIBRT_FOUND)
|
|||
TARGET_LINK_LIBRARIES(nfc ${LIBRT_LIBRARIES})
|
||||
ENDIF(LIBRT_FOUND)
|
||||
|
||||
SET_TARGET_PROPERTIES(nfc PROPERTIES SOVERSION 5 VERSION 5.0.1)
|
||||
SET_TARGET_PROPERTIES(nfc PROPERTIES SOVERSION 6 VERSION 6.0.0)
|
||||
|
||||
IF(WIN32)
|
||||
# Libraries that are windows specific
|
||||
|
|
|
@ -22,7 +22,7 @@ libnfc_la_SOURCES = \
|
|||
nfc-internal.h \
|
||||
target-subr.h
|
||||
|
||||
libnfc_la_LDFLAGS = -no-undefined -version-info 5:1:0 -export-symbols-regex '^nfc_|^iso14443a_|^iso14443b_|^str_nfc_|pn53x_transceive|pn532_SAMConfiguration|pn53x_read_register|pn53x_write_register'
|
||||
libnfc_la_LDFLAGS = -no-undefined -version-info 6:0:0 -export-symbols-regex '^nfc_|^iso14443a_|^iso14443b_|^str_nfc_|pn53x_transceive|pn532_SAMConfiguration|pn53x_read_register|pn53x_write_register'
|
||||
libnfc_la_CFLAGS = @DRIVERS_CFLAGS@
|
||||
libnfc_la_LIBADD = \
|
||||
$(top_builddir)/libnfc/chips/libnfcchips.la \
|
||||
|
|
Loading…
Reference in a new issue