From dff0f701d0f280f93c5c7698ef0f8e16dbbe815a Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 16 Jan 2010 19:04:38 +0200 Subject: [PATCH] Preparations for v0.7.1 release --- build_release | 2 +- hostapd/ChangeLog | 27 +++++++++++++++++++++++++++ hostapd/README | 2 +- hostapd/hostapd_cli.c | 4 ++-- hostapd/main.c | 4 ++-- src/common/version.h | 2 +- wpa_supplicant/ChangeLog | 26 ++++++++++++++++++++++++++ wpa_supplicant/README | 2 +- wpa_supplicant/wpa_cli.c | 4 ++-- wpa_supplicant/wpa_supplicant.c | 4 ++-- www/hostapd/index.html | 4 ++-- www/index.html | 10 +++++----- www/versions.dot | 5 +++-- www/wpa_supplicant/index.html | 8 ++++---- 14 files changed, 79 insertions(+), 25 deletions(-) diff --git a/build_release b/build_release index da94097..fb46bc8 100755 --- a/build_release +++ b/build_release @@ -38,7 +38,7 @@ git archive --format=tar --prefix=hostapd-$VER/ HEAD \ README COPYING patches src hostapd | gzip > $RELDIR/hostapd-$VER.tar.gz git archive --format=tar --prefix=wpa_supplicant-$VER/ HEAD \ - README COPYING patches src wpa_supplicant hostapd/*.[ch] | + README COPYING patches src wpa_supplicant | tar --directory=$TMP -xf - cd $TMP diff --git a/hostapd/ChangeLog b/hostapd/ChangeLog index 374bc09..ced77af 100644 --- a/hostapd/ChangeLog +++ b/hostapd/ChangeLog @@ -1,5 +1,32 @@ ChangeLog for hostapd +2010-01-16 - v0.7.1 + * cleaned up driver wrapper API (struct wpa_driver_ops); the new API + is not fully backwards compatible, so out-of-tree driver wrappers + will need modifications + * cleaned up various module interfaces + * merge hostapd and wpa_supplicant developers' documentation into a + single document + * fixed HT Capabilities IE with nl80211 drivers + * moved generic AP functionality code into src/ap + * WPS: handle Selected Registrar as union of info from all Registrars + * remove obsolte Prism54.org driver wrapper + * added internal debugging mechanism with backtrace support and memory + allocation/freeing validation, etc. tests (CONFIG_WPA_TRACE=y) + * EAP-FAST server: piggyback Phase 2 start with the end of Phase 1 + * WPS: add support for dynamically selecting whether to provision the + PSK as an ASCII passphrase or PSK + * added support for WDS (4-address frame) mode with per-station virtual + interfaces (wds_sta=1 in config file; only supported with + driver=nl80211 for now) + * fixed WPS Probe Request processing to handle missing required + attribute + * fixed PKCS#12 use with OpenSSL 1.0.0 + * detect bridge interface automatically so that bridge parameter in + hostapd.conf becomes optional (though, it may now be used to + automatically add then WLAN interface into a bridge with + driver=nl80211) + 2009-11-21 - v0.7.0 * increased hostapd_cli ping interval to 5 seconds and made this configurable with a new command line options (-G) diff --git a/hostapd/README b/hostapd/README index c65552f..1af487d 100644 --- a/hostapd/README +++ b/hostapd/README @@ -2,7 +2,7 @@ hostapd - user space IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator and RADIUS authentication server ================================================================ -Copyright (c) 2002-2009, Jouni Malinen and contributors +Copyright (c) 2002-2010, Jouni Malinen and contributors All Rights Reserved. This program is dual-licensed under both the GPL version 2 and BSD diff --git a/hostapd/hostapd_cli.c b/hostapd/hostapd_cli.c index 964c64d..2cfaf58 100644 --- a/hostapd/hostapd_cli.c +++ b/hostapd/hostapd_cli.c @@ -1,6 +1,6 @@ /* * hostapd - command line interface for hostapd daemon - * Copyright (c) 2004-2009, Jouni Malinen + * Copyright (c) 2004-2010, Jouni Malinen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -22,7 +22,7 @@ static const char *hostapd_cli_version = "hostapd_cli v" VERSION_STR "\n" -"Copyright (c) 2004-2009, Jouni Malinen and contributors"; +"Copyright (c) 2004-2010, Jouni Malinen and contributors"; static const char *hostapd_cli_license = diff --git a/hostapd/main.c b/hostapd/main.c index 00ce22d..6d3c7a6 100644 --- a/hostapd/main.c +++ b/hostapd/main.c @@ -1,6 +1,6 @@ /* * hostapd / main() - * Copyright (c) 2002-2009, Jouni Malinen + * Copyright (c) 2002-2010, Jouni Malinen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -447,7 +447,7 @@ static void show_version(void) "hostapd v" VERSION_STR "\n" "User space daemon for IEEE 802.11 AP management,\n" "IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator\n" - "Copyright (c) 2002-2009, Jouni Malinen " + "Copyright (c) 2002-2010, Jouni Malinen " "and contributors\n"); } diff --git a/src/common/version.h b/src/common/version.h index f8b1e68..9fa74f8 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -1,6 +1,6 @@ #ifndef VERSION_H #define VERSION_H -#define VERSION_STR "0.7.0" +#define VERSION_STR "0.7.1" #endif /* VERSION_H */ diff --git a/wpa_supplicant/ChangeLog b/wpa_supplicant/ChangeLog index 593826d..5661775 100644 --- a/wpa_supplicant/ChangeLog +++ b/wpa_supplicant/ChangeLog @@ -1,5 +1,31 @@ ChangeLog for wpa_supplicant +2010-01-16 - v0.7.1 + * cleaned up driver wrapper API (struct wpa_driver_ops); the new API + is not fully backwards compatible, so out-of-tree driver wrappers + will need modifications + * cleaned up various module interfaces + * merge hostapd and wpa_supplicant developers' documentation into a + single document + * nl80211: use explicit deauthentication to clear cfg80211 state to + avoid issues when roaming between APs + * dbus: major design changes in the new D-Bus API + (fi.w1.wpa_supplicant1) + * nl80211: added support for IBSS networks + * added internal debugging mechanism with backtrace support and memory + allocation/freeing validation, etc. tests (CONFIG_WPA_TRACE=y) + * added WPS ER unsubscription command to more cleanly unregister from + receiving UPnP events when ER is terminated + * cleaned up AP mode operations to avoid need for virtual driver_ops + wrapper + * added BSS table to maintain more complete scan result information + over multiple scans (that may include only partial results) + * wpa_gui-qt4: update Peers dialog information more dynamically while + the dialog is kept open + * fixed PKCS#12 use with OpenSSL 1.0.0 + * driver_wext: Added cfg80211-specific optimization to avoid some + unnecessary scans and to speed up association + 2009-11-21 - v0.7.0 * increased wpa_cli ping interval to 5 seconds and made this configurable with a new command line options (-G) diff --git a/wpa_supplicant/README b/wpa_supplicant/README index 4aa652f..45c8bae 100644 --- a/wpa_supplicant/README +++ b/wpa_supplicant/README @@ -1,7 +1,7 @@ WPA Supplicant ============== -Copyright (c) 2003-2009, Jouni Malinen and contributors +Copyright (c) 2003-2010, Jouni Malinen and contributors All Rights Reserved. This program is dual-licensed under both the GPL version 2 and BSD diff --git a/wpa_supplicant/wpa_cli.c b/wpa_supplicant/wpa_cli.c index 1933140..7c6abcb 100644 --- a/wpa_supplicant/wpa_cli.c +++ b/wpa_supplicant/wpa_cli.c @@ -1,6 +1,6 @@ /* * WPA Supplicant - command line interface for wpa_supplicant daemon - * Copyright (c) 2004-2009, Jouni Malinen + * Copyright (c) 2004-2010, Jouni Malinen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -31,7 +31,7 @@ static const char *wpa_cli_version = "wpa_cli v" VERSION_STR "\n" -"Copyright (c) 2004-2009, Jouni Malinen and contributors"; +"Copyright (c) 2004-2010, Jouni Malinen and contributors"; static const char *wpa_cli_license = diff --git a/wpa_supplicant/wpa_supplicant.c b/wpa_supplicant/wpa_supplicant.c index ee7acdd..d62937b 100644 --- a/wpa_supplicant/wpa_supplicant.c +++ b/wpa_supplicant/wpa_supplicant.c @@ -1,6 +1,6 @@ /* * WPA Supplicant - * Copyright (c) 2003-2009, Jouni Malinen + * Copyright (c) 2003-2010, Jouni Malinen * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -49,7 +49,7 @@ const char *wpa_supplicant_version = "wpa_supplicant v" VERSION_STR "\n" -"Copyright (c) 2003-2009, Jouni Malinen and contributors"; +"Copyright (c) 2003-2010, Jouni Malinen and contributors"; const char *wpa_supplicant_license = "This program is free software. You can distribute it and/or modify it\n" diff --git a/www/hostapd/index.html b/www/hostapd/index.html index 908abf9..881c506 100644 --- a/www/hostapd/index.html +++ b/www/hostapd/index.html @@ -122,7 +122,7 @@ for the current documentation.

  • Latest development release:
  • ChangeLog:
      @@ -251,7 +251,7 @@ bug/feature request.
      Jouni Malinen
      -Last modified: Tue Jan 12 18:29:09 EET 2010 +Last modified: Sat Jan 16 18:18:10 EET 2010 diff --git a/www/index.html b/www/index.html index c65cd5e..645ac3b 100644 --- a/www/index.html +++ b/www/index.html @@ -191,10 +191,10 @@ main kernel tree.
  • Latest development release:
  • ChangeLog:
      @@ -266,7 +266,7 @@ get lost, please report it through the bug tracking system as
      Jouni Malinen
      -Last modified: Tue Jan 12 18:29:24 EET 2010 +Last modified: Sat Jan 16 18:17:50 EET 2010 diff --git a/www/versions.dot b/www/versions.dot index 6a9f478..c90f2b3 100644 --- a/www/versions.dot +++ b/www/versions.dot @@ -46,6 +46,7 @@ digraph versions { v067 [label="0.6.7 hw\n2009-01-06"] v070 [label="0.7.0 hw\n2009-11-21"] + v071 [label="0.7.1 hw\n2010-01-16"] # stable releases @@ -82,14 +83,14 @@ digraph versions { v037 -> v040 -> v041 -> v042 -> v043 -> v044 -> v045 -> v046 -> v047 v047 -> v050 -> v051 -> v052 -> v053 -> v054 -> v055 -> v056 -> v057 v057 -> v060 -> v061 -> v062 -> v063 -> v064 -> v065 -> v066 -> v067 -> v068 - v068 -> v070 + v068 -> v070 -> v071 {rank=same; v001 v024} {rank=same; v030 v037} {rank=same; v040 v047} {rank=same; v050 v057} {rank=same; v060 v068} - {rank=same; v070 v070} + {rank=same; v070 v071} # stable releases diff --git a/www/wpa_supplicant/index.html b/www/wpa_supplicant/index.html index e00d4f6..02d68c8 100644 --- a/www/wpa_supplicant/index.html +++ b/www/wpa_supplicant/index.html @@ -177,9 +177,9 @@ has some more information about the Windows port of wpa_supplicant.

  • Latest development release:
  • ChangeLog:
      @@ -341,7 +341,7 @@ bug/feature request.
      Jouni Malinen
      -Last modified: Tue Jan 12 18:29:16 EET 2010 +Last modified: Sat Jan 16 18:18:01 EET 2010 -- 2.1.4