From: Shawn Routhier Date: Thu, 16 Jan 2014 03:38:55 +0000 (-0800) Subject: [master] Update version stamps and such for 4.3.0b1 X-Git-Tag: v4_3_0b1~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=324257e3dbf32caa5b50f67770030d5078c2114c;p=thirdparty%2Fdhcp.git [master] Update version stamps and such for 4.3.0b1 --- diff --git a/LICENSE b/LICENSE index 10c0fbcb3..eef341e1d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -# Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC") +# Copyright (c) 2004-2014 by Internet Systems Consortium, Inc. ("ISC") # Copyright (c) 1995-2003 by Internet Software Consortium # # Permission to use, copy, modify, and distribute this software for any diff --git a/README b/README index f321ef1ab..bef92d8b5 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ Internet Systems Consortium DHCP Distribution - Version 4.3.0a1 - 17 December 2013 + Version 4.3.0b1 + 20 January 2014 README FILE @@ -140,12 +140,12 @@ information. On Digital Unix, type ``man pfilt''. To build the DHCP Distribution, unpack the compressed tar file using the tar utility and the gzip command - type something like: - gunzip dhcp-4.3.0a1.tar.gz - tar xvf dhcp-4.3.0a1.tar + gunzip dhcp-4.3.0b1.tar.gz + tar xvf dhcp-4.3.0b1.tar CONFIGURING IT -Now, cd to the dhcp-4.3.0a1 subdirectory that you've just created and +Now, cd to the dhcp-4.3.0b1 subdirectory that you've just created and configure the source tree by typing: ./configure diff --git a/RELNOTES b/RELNOTES index d02e5bfcc..7b2ad72c8 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,17 +1,26 @@ Internet Systems Consortium DHCP Distribution - Version 4.3.0a1 - 17 December 2013 + Version 4.3.0b1 + 20 January 2014 Release Notes NEW FEATURES -ISC DHCP 4.2.x includes features that were not included in DHCP 4.1.x. -These include: +The major "theme" for ISC DHCP 4.3.x was to update the support for +DHCPv6 to include several of the features that have been available +for DHCPv4. These include: -Processing the DHCP to DNS server transactions in an asyncrhonous fashion. -The DHCP server or client can now continue with its processing while -awaiting replies from the DNS server. +- Support the use of classes + +- Support for on_commit, on_expiry and on_release statements + +- Better logging of address assignements + +- Support for using DHCPv6 relay options in expressions + +This release also adds suppport for the standard DDNS as described in the +current RFCs as well as enhancing support for dynamically adding and removing +subclasses via OMAPI. There are a number of DHCPv6 limitations and features missing in this release, which will be addressed in the future: diff --git a/client/dhclient.c b/client/dhclient.c index bdb7a59f5..5f6ed00f3 100644 --- a/client/dhclient.c +++ b/client/dhclient.c @@ -3,7 +3,7 @@ DHCP Client. */ /* - * Copyright (c) 2004-2013 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2014 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1995-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -69,7 +69,7 @@ int std_dhcid = 0; assert (state_is == state_shouldbe). */ #define ASSERT_STATE(state_is, state_shouldbe) {} -static const char copyright[] = "Copyright 2004-2013 Internet Systems Consortium."; +static const char copyright[] = "Copyright 2004-2014 Internet Systems Consortium."; static const char arr [] = "All rights reserved."; static const char message [] = "Internet Systems Consortium DHCP Client"; static const char url [] = "For info, please visit https://www.isc.org/software/dhcp/"; diff --git a/configure.ac b/configure.ac index 3b7f12e3b..dd6cf294b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([DHCP],[4.3.0a1],[dhcp-users@isc.org]) +AC_INIT([DHCP],[4.3.0b1],[dhcp-users@isc.org]) # we specify "foreign" to avoid having to have the GNU mandated files, # like AUTHORS, COPYING, and such diff --git a/relay/dhcrelay.c b/relay/dhcrelay.c index 4465c04f0..96654bf92 100644 --- a/relay/dhcrelay.c +++ b/relay/dhcrelay.c @@ -3,7 +3,7 @@ DHCP/BOOTP Relay Agent. */ /* - * Copyright(c) 2004-2013 by Internet Systems Consortium, Inc.("ISC") + * Copyright(c) 2004-2014 by Internet Systems Consortium, Inc.("ISC") * Copyright(c) 1997-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -139,7 +139,7 @@ static int strip_relay_agent_options(struct interface_info *, struct dhcp_packet *, unsigned); static const char copyright[] = -"Copyright 2004-2013 Internet Systems Consortium."; +"Copyright 2004-2014 Internet Systems Consortium."; static const char arr[] = "All rights reserved."; static const char message[] = "Internet Systems Consortium DHCP Relay Agent"; diff --git a/server/dhcpd.c b/server/dhcpd.c index ebf00fd25..4dd1718ba 100644 --- a/server/dhcpd.c +++ b/server/dhcpd.c @@ -3,7 +3,7 @@ DHCP Server Daemon. */ /* - * Copyright (c) 2004-2013 by Internet Systems Consortium, Inc. ("ISC") + * Copyright (c) 2004-2014 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1996-2003 by Internet Software Consortium * * Permission to use, copy, modify, and distribute this software for any @@ -33,7 +33,7 @@ */ static const char copyright[] = -"Copyright 2004-2013 Internet Systems Consortium."; +"Copyright 2004-2014 Internet Systems Consortium."; static const char arr [] = "All rights reserved."; static const char message [] = "Internet Systems Consortium DHCP Server"; static const char url [] = diff --git a/util/bind.sh b/util/bind.sh index 92becd351..20b572545 100644 --- a/util/bind.sh +++ b/util/bind.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2009-2013 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2009-2014 Internet Systems Consortium, Inc. ("ISC") # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -59,6 +59,7 @@ case $# in ### For ease of use, this records the sticky tag of versions ### released with each point release. ### + 4.3.0b1) BINDTAG=v9_9_5rc1 ;; 4.3.0a1) BINDTAG=v9_9_5b1 ;; 4.2.6b1) BINDTAG=v9_9_5 ;; 4.2.5b1|4.2.5rc1) BINDTAG=v9_8_4_P1 ;;