Preparations for v0.7.1 release

master
Jouni Malinen 15 years ago
parent 3e674c063c
commit dff0f701d0

@ -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

@ -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<seconds>)

@ -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 <j@w1.fi> and contributors
Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi> and contributors
All Rights Reserved.
This program is dual-licensed under both the GPL version 2 and BSD

@ -1,6 +1,6 @@
/*
* hostapd - command line interface for hostapd daemon
* Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
* Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi>
*
* 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 <j@w1.fi> and contributors";
"Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi> and contributors";
static const char *hostapd_cli_license =

@ -1,6 +1,6 @@
/*
* hostapd / main()
* Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
* Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi>
*
* 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 <j@w1.fi> "
"Copyright (c) 2002-2010, Jouni Malinen <j@w1.fi> "
"and contributors\n");
}

@ -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 */

@ -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<seconds>)

@ -1,7 +1,7 @@
WPA Supplicant
==============
Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi> and contributors
Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi> and contributors
All Rights Reserved.
This program is dual-licensed under both the GPL version 2 and BSD

@ -1,6 +1,6 @@
/*
* WPA Supplicant - command line interface for wpa_supplicant daemon
* Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
* Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi>
*
* 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 <j@w1.fi> and contributors";
"Copyright (c) 2004-2010, Jouni Malinen <j@w1.fi> and contributors";
static const char *wpa_cli_license =

@ -1,6 +1,6 @@
/*
* WPA Supplicant
* Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
* Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi>
*
* 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 <j@w1.fi> and contributors";
"Copyright (c) 2003-2010, Jouni Malinen <j@w1.fi> and contributors";
const char *wpa_supplicant_license =
"This program is free software. You can distribute it and/or modify it\n"

@ -122,7 +122,7 @@ for the current documentation.</b></p>
</ul>
<li>Latest development release:
<ul>
<li><a href="../releases/hostapd-0.7.0.tar.gz">hostapd-0.7.0.tar.gz</a></li>
<li><a href="../releases/hostapd-0.7.1.tar.gz">hostapd-0.7.1.tar.gz</a></li>
</ul>
<li>ChangeLog:
<ul>
@ -251,7 +251,7 @@ bug/feature request</a>.
<address><a href="mailto:j@w1.fi">Jouni Malinen</a></address>
<!-- Created: Sun Jan 2 17:20:17 PST 2005 -->
<!-- hhmts start -->
Last modified: Tue Jan 12 18:29:09 EET 2010
Last modified: Sat Jan 16 18:18:10 EET 2010
<!-- hhmts end -->
</div>
</body>

@ -191,10 +191,10 @@ main kernel tree.
</ul>
<li>Latest development release:
<ul>
<li><a href="releases/hostapd-0.7.0.tar.gz">hostapd-0.7.0.tar.gz</a>
<li><a href="releases/wpa_supplicant-0.7.0.tar.gz">wpa_supplicant-0.7.0.tar.gz</a> (source code for all versions)</li>
<li><a href="releases/wpa_supplicant-0.7.0.exe">wpa_supplicant-0.7.0.exe</a> (binary installer for Windows)</li>
<li><a href="releases/wpa_supplicant-windows-bin-0.7.0.zip">wpa_supplicant-windows-bin-0.7.0.zip</a> (binaries for Windows)</li>
<li><a href="releases/hostapd-0.7.1.tar.gz">hostapd-0.7.1.tar.gz</a>
<li><a href="releases/wpa_supplicant-0.7.1.tar.gz">wpa_supplicant-0.7.1.tar.gz</a> (source code for all versions)</li>
<li><a href="releases/wpa_supplicant-0.7.1.exe">wpa_supplicant-0.7.1.exe</a> (binary installer for Windows)</li>
<li><a href="releases/wpa_supplicant-windows-bin-0.7.1.zip">wpa_supplicant-windows-bin-0.7.1.zip</a> (binaries for Windows)</li>
</ul>
<li>ChangeLog:
<ul>
@ -266,7 +266,7 @@ get lost, please report it through the bug tracking system as
<address><a href="mailto:j@w1.fi">Jouni Malinen</a></address>
<!-- Created: Mon May 27 20:08:41 EEST 2002 -->
<!-- hhmts start -->
Last modified: Tue Jan 12 18:29:24 EET 2010
Last modified: Sat Jan 16 18:17:50 EET 2010
<!-- hhmts end -->
</div>
</body>

@ -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

@ -177,9 +177,9 @@ has some more information about the Windows port of wpa_supplicant.</p>
</ul>
<li>Latest development release:
<ul>
<li><a href="../releases/wpa_supplicant-0.7.0.tar.gz">wpa_supplicant-0.7.0.tar.gz</a> (source code for all versions)</li>
<li><a href="../releases/wpa_supplicant-0.7.0.exe">wpa_supplicant-0.7.0.exe</a> (binary installer for Windows)</li>
<li><a href="../releases/wpa_supplicant-windows-bin-0.7.0.zip">wpa_supplicant-windows-bin-0.7.0.zip</a> (binaries for Windows)</li>
<li><a href="../releases/wpa_supplicant-0.7.1.tar.gz">wpa_supplicant-0.7.1.tar.gz</a> (source code for all versions)</li>
<li><a href="../releases/wpa_supplicant-0.7.1.exe">wpa_supplicant-0.7.1.exe</a> (binary installer for Windows)</li>
<li><a href="../releases/wpa_supplicant-windows-bin-0.7.1.zip">wpa_supplicant-windows-bin-0.7.1.zip</a> (binaries for Windows)</li>
</ul>
<li>ChangeLog:
<ul>
@ -341,7 +341,7 @@ bug/feature request</a>.
<address><a href="mailto:j@w1.fi">Jouni Malinen</a></address>
<!-- Created: Sat May 22 21:41:58 PDT 2004 -->
<!-- hhmts start -->
Last modified: Tue Jan 12 18:29:16 EET 2010
Last modified: Sat Jan 16 18:18:01 EET 2010
<!-- hhmts end -->
</div>
</body>

Loading…
Cancel
Save