]> err.no Git - yubikey-personalization.old/commitdiff
Accept firmware version 2.3.x too.
authorSimon Josefsson <simon@josefsson.org>
Wed, 20 Jul 2011 10:05:59 +0000 (12:05 +0200)
committerSimon Josefsson <simon@josefsson.org>
Wed, 20 Jul 2011 10:05:59 +0000 (12:05 +0200)
NEWS
configure.ac
ykcore/ykcore.c

diff --git a/NEWS b/NEWS
index 3954458c4fbbfdd3d2d3974e16565ac3ff4840f9..564ff1e9e336723c63a7c8f81be4b435aabe0c46 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
 Yubikey-personalize NEWS -- History of user-visible changes.     -*- outline -*-
 
+* Version 1.5.3 (unreleased)
+
+** Accept firmware version 2.3.x too.
+
 * Version 1.5.2 (released 2011-05-10)
 
 ** Added an udev file.
index a527d619d94e605023c245d191742bc169af6332..47491e732d43561cea6cadddf6baddc79437f899 100644 (file)
@@ -26,7 +26,7 @@
 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
-AC_INIT([yubikey-personalization], [1.5.2],
+AC_INIT([yubikey-personalization], [1.5.3],
   [yubico-devel@googlegroups.com], [ykpers],
   [http://code.google.com/p/yubikey-personalization/])
 AC_CONFIG_AUX_DIR([build-aux])
@@ -37,7 +37,7 @@ AC_CONFIG_MACRO_DIR([m4])
 # Interfaces added:                             AGE++
 # Interfaces removed:                           AGE=0
 AC_SUBST(LT_CURRENT, 6)
-AC_SUBST(LT_REVISION, 1)
+AC_SUBST(LT_REVISION, 2)
 AC_SUBST(LT_AGE, 5)
 
 AM_INIT_AUTOMAKE([-Wall -Werror])
index 56a6752b72b16a7cb6403ee2c1474451497ef886..ca1083d9759df0463280f1dd10313925941a573d 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- mode:C; c-file-style: "bsd" -*- */
 /*
- * Copyright (c) 2008, 2009, 2010, Yubico AB
+ * Copyright (c) 2008, 2009, 2010, 2011, Yubico AB
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -106,7 +106,8 @@ int yk_check_firmware_version(YK_KEY *k)
              (st.versionMajor == 2 &&
               (st.versionMinor == 0 ||
                st.versionMinor == 1 ||
-               st.versionMinor == 2)))) {
+               st.versionMinor == 2 ||
+               st.versionMinor == 3)))) {
                yk_errno = YK_EFIRMWARE;
                return 0;
        }