summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2013-12-13 13:32:35 -0800
committerShawn Routhier <sar@isc.org>2013-12-13 13:32:35 -0800
commit32da1939afc3ec725484ed28c40de3be598e7471 (patch)
treeaf0a1680a1ad708296555b984a52161c7fbc26f7
parent4d079f0ec097e95bc617074102f32ad37ee23aed (diff)
downloadisc-dhcp-32da1939afc3ec725484ed28c40de3be598e7471.tar.gz
[master] Prepare for 4.3.0a1
Update vesion stamps, copyright dates and the bind version to use.
-rw-r--r--README19
-rw-r--r--RELNOTES4
-rw-r--r--client/dhclient.c2
-rw-r--r--configure.ac2
-rw-r--r--relay/dhcrelay.c2
-rw-r--r--server/dhcpd.c4
-rw-r--r--util/bind.sh4
7 files changed, 22 insertions, 15 deletions
diff --git a/README b/README
index cd256c48..f321ef1a 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
Internet Systems Consortium DHCP Distribution
- Version 4.3.0-Pre-Beta
- XX Month 2013
+ Version 4.3.0a1
+ 17 December 2013
README FILE
@@ -98,7 +98,14 @@ directory, it may not have up-to-date information).
RELEASE STATUS
-This is ISC DHCP 4.2.0, which modifies the DDNS code to be asynchronous.
+This is ISC DHCP 4.3.0. The major theme for this release is "ipv6 uplift",
+in which we enhance the v6 code to support many of the features found
+in the v4 code. These include: support for v6, support for on_commit,
+on_expiry and on_release in v6, support for accessing v6 relay options
+and better log messages for v6 addresses. Non v6 features include:
+support for the standard DDNS, better OMAPI class and sub-class support
+allowing for dynamic addition and removal of sub-classes, and support for
+DDNS without zone statements.
In this release, the DHCPv6 server should be fully functional on Linux,
Solaris, or any BSD. The DHCPv6 client should be similarly functional
@@ -133,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.2.0.tar.gz
- tar xvf dhcp-4.2.0.tar
+ gunzip dhcp-4.3.0a1.tar.gz
+ tar xvf dhcp-4.3.0a1.tar
CONFIGURING IT
-Now, cd to the dhcp-4.2.0 subdirectory that you've just created and
+Now, cd to the dhcp-4.3.0a1 subdirectory that you've just created and
configure the source tree by typing:
./configure
diff --git a/RELNOTES b/RELNOTES
index 96b62c68..d978d9b8 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,6 +1,6 @@
Internet Systems Consortium DHCP Distribution
- Version 4.3.0-Pre-Beta
- XX Month 2013
+ Version 4.3.0a1
+ 17 December 2013
Release Notes
diff --git a/client/dhclient.c b/client/dhclient.c
index 12d4ede4..bdb7a59f 100644
--- a/client/dhclient.c
+++ b/client/dhclient.c
@@ -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-2009 Internet Systems Consortium.";
+static const char copyright[] = "Copyright 2004-2013 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 417b240e..3b7f12e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([DHCP],[4.3.0-Pre-Beta],[dhcp-users@isc.org])
+AC_INIT([DHCP],[4.3.0a1],[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 e8cdcf3f..4465c04f 100644
--- a/relay/dhcrelay.c
+++ b/relay/dhcrelay.c
@@ -139,7 +139,7 @@ static int strip_relay_agent_options(struct interface_info *,
struct dhcp_packet *, unsigned);
static const char copyright[] =
-"Copyright 2004-2009 Internet Systems Consortium.";
+"Copyright 2004-2013 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 cafc77c2..ebf00fd2 100644
--- a/server/dhcpd.c
+++ b/server/dhcpd.c
@@ -3,7 +3,7 @@
DHCP Server Daemon. */
/*
- * Copyright (c) 2004-2011,2013 by Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (c) 2004-2013 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-2009 Internet Systems Consortium.";
+"Copyright 2004-2013 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 e432c3be..92becd35 100644
--- a/util/bind.sh
+++ b/util/bind.sh
@@ -59,8 +59,8 @@ case $# in
### For ease of use, this records the sticky tag of versions
### released with each point release.
###
- 4.3.0a1) BINDTAG=v9_9 ;;
- 4.2.6b1) BINDTAG=v9_8_6 ;;
+ 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 ;;
4.2.4rc2|4.2.4) BINDTAG=v9_8_3 ;;
4.2.4b1|4.2.4rc1) BINDTAG=v9_8_2 ;;