From 4016405214a1958b701ea51d9b7533097ba50255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Wed, 13 May 2015 02:01:23 +0200 Subject: [PATCH] Add updating instructions. --- Updating.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Updating.md diff --git a/Updating.md b/Updating.md new file mode 100644 index 0000000..32a4398 --- /dev/null +++ b/Updating.md @@ -0,0 +1,7 @@ +# Updating from 0.4.0 to ? + +* The abstract `MifareTag` structure was renamed to `FreefareTag` in order to avoid confusion when adding support for non-MIFARE tags; + Users of libfreefare can simply replace any occurence of `MifareTag` with `FreefareTag`. +* The `mifare_tag_type` enum was renamed to `freefare_tag_type` (this should not have incidence for users) and defined values for MIFARE tags (that is *all* values) have been prefixed with `MIFARE_` for consistency. + Users of libfreefare will need to adjust comparisons of the return value of `freefare_get_tag_type()` if they use this in their code. +