]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
Next release will be 1.6.17
authorWillem Toorop <willem@nlnetlabs.nl>
Fri, 3 Jan 2014 12:41:44 +0000 (13:41 +0100)
committerWillem Toorop <willem@nlnetlabs.nl>
Fri, 3 Jan 2014 12:41:44 +0000 (13:41 +0100)
Changelog
Makefile.in
configure.ac
contrib/DNS-LDNS
contrib/python/Changelog
contrib/python/docs/source/conf.py
drill/configure.ac
examples/configure.ac
lua/configure.ac
pcat/configure.ac

index 6383060bc031dc75931694b257f6f9396fb99e8c..f3749a89cc51e68dbc718a3859ee8095d20e63f7 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,4 @@
-1.7.0
+1.6.17
        * Fix ldns_dnssec_zone_new_frm_fp_l to allow the last parsed line of a
          zone to be an NSEC3 (or its RRSIG) covering an empty non terminal.
        * Add --disable-dane option to configure and check availability of the
@@ -36,9 +36,6 @@
        * ldns-verify-zone NSEC3 checking from quadratic to linear performance.
          Thanks NIC MX (nicmexico.mx)
        * ldns-dane setup new ssl session for each new connect to prevent hangs
-       * Bump version to 1.7.0
-       * The version of shared library now has similar scheme as libunbound.
-         ldns 1.7.0 will have shared library version (SONAME) 2.0.0
        * bugfix #521: drill trace continue on empty non-terminals with NSEC3
        * bugfix #525: Fix documentation of ldns_resolver_set_retry
        * Remove unused LDNS_RDF_TYPE_TSIG and associated functions.
index 73388c7a691f67b5909478f2cad1672cc1a62597..7a1c2414a3827fbd3d881215c00a25097157b381 100644 (file)
@@ -2,7 +2,7 @@
 # See the file LICENSE for the license
 SHELL          = @SHELL@
 VERSION         = @PACKAGE_VERSION@
-version_info   = @LIBLDNS_CURRENT@:@LIBLDNS_REVISION@:@LIBLDNS_AGE@
+version_info   = @VERSION_INFO@
 srcdir                 = @srcdir@
 prefix         = @prefix@
 exec_prefix    = @exec_prefix@
index d4a1df689b077377588e26c5666ff4f66eba2f65..c98fecab65f259ce039bf8ae83bf5f6158fc8487 100644 (file)
@@ -5,42 +5,15 @@ sinclude(acx_nlnetlabs.m4)
 
 # must be numbers. ac_defun because of later processing.
 m4_define([VERSION_MAJOR],[1])
-m4_define([VERSION_MINOR],[7])
-m4_define([VERSION_MICRO],[0])
+m4_define([VERSION_MINOR],[6])
+m4_define([VERSION_MICRO],[17])
 AC_INIT(ldns, m4_defn([VERSION_MAJOR]).m4_defn([VERSION_MINOR]).m4_defn([VERSION_MICRO]), libdns@nlnetlabs.nl, libdns)
 AC_CONFIG_SRCDIR([packet.c])
 # needed to build correct soname
 AC_SUBST(LDNS_VERSION_MAJOR, [VERSION_MAJOR])
 AC_SUBST(LDNS_VERSION_MINOR, [VERSION_MINOR])
 AC_SUBST(LDNS_VERSION_MICRO, [VERSION_MICRO])
-
-LIBLDNS_CURRENT=2
-LIBLDNS_REVISION=0
-LIBLDNS_AGE=0
-# 1.6.16 had 1:6:16
-# 1.7.0  has 2:0:0
-
-#   Current  -- the number of the binary API that we're implementing
-#   Revision -- which iteration of the implementation of the binary
-#               API are we supplying?
-#   Age      -- How many previous binary API versions do we also
-#               support?
-#
-# If we release a new version that does not change the binary API,
-# increment Revision.
-#
-# If we release a new version that changes the binary API, but does
-# not break programs compiled against the old binary API, increment
-# Current and Age.  Set Revision to 0, since this is the first
-# implementation of the new API.
-#
-# Otherwise, we're changing the binary API and breaking bakward
-# compatibility with old binaries.  Increment Current.  Set Age to 0,
-# since we're backward compatible with no previous APIs.  Set Revision
-# to 0 too.
-AC_SUBST(LIBLDNS_CURRENT)
-AC_SUBST(LIBLDNS_REVISION)
-AC_SUBST(LIBLDNS_AGE)
+AC_SUBST(VERSION_INFO, [VERSION_MAJOR:VERSION_MINOR:VERSION_MICRO])
 
 AC_AIX
 LT_INIT
index c9cd177f878c680557c0f3583b75686f33961321..f1705d6e7e6a653136e3d8fd2d8a1efc22d2f990 160000 (submodule)
@@ -1 +1 @@
-Subproject commit c9cd177f878c680557c0f3583b75686f33961321
+Subproject commit f1705d6e7e6a653136e3d8fd2d8a1efc22d2f990
index 07e57ba9f5e7304759aae59c63b0fd82eda26c86..3ed8df46a9fe660987d7302dc817b99a87e430d6 100644 (file)
@@ -1,4 +1,4 @@
-1.7.0
+1.6.17
        * Added ldns_rdf.data_as_bytearray(). The method returns a bytearray object
          containing rdf data.
        * Changed the behaviour of ldns_resolver.trusted_key() in order to prevent
index 757c822e7762ebca4629ef9dc8078efa09019410..468b827d8bfbe9eb526a1338bbbea556e2bbc178 100644 (file)
@@ -43,9 +43,9 @@ copyright = '2009-2013, Karel Slany, Zdenek Vasicek'
 # other places throughout the built documents.
 #
 # The short X.Y version.
-version = '1.7'
+version = '1.6'
 # The full version, including alpha/beta/rc tags.
-release = '1.7.0'
+release = '1.6.17'
 
 # There are two options for replacing |today|: either, you set today to some
 # non-false value, then it is used:
index a6673ac8995d38abc3ecc50b05a109925476447c..b7fe2aee07a8e8ee85bb6047886bfb1cb33c478d 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.56)
-AC_INIT(ldns, 1.7.0, libdns@nlnetlabs.nl,libdns)
+AC_INIT(ldns, 1.6.17, libdns@nlnetlabs.nl,libdns)
 AC_CONFIG_SRCDIR([drill.c])
 sinclude(../acx_nlnetlabs.m4)
 
index f692a4dceca38cde344f3b97c58bc33d4b86cde2..e33983e771854a86e523eabad47e1552cb98caac 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.56)
-AC_INIT(ldns, 1.7.0, libdns@nlnetlabs.nl,libdns)
+AC_INIT(ldns, 1.6.17, libdns@nlnetlabs.nl,libdns)
 AC_CONFIG_SRCDIR([ldns-read-zone.c])
 sinclude(../acx_nlnetlabs.m4)
 
index c31ec46f068e82906ec87290a9999965ebc8d901..eb3bb8ea10a1fe0baa7619e8cca0c5669fa0b821 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(ldns-tests, 1.7.0, libdns@nlnetlabs.nl, ldns-tests-1.0)
+AC_INIT(ldns-tests, 1.6.17, libdns@nlnetlabs.nl, ldns-tests-1.0)
 AC_CONFIG_SRCDIR([../ldns/config.h])
 
 AC_AIX
index 61c68f73dda222b2195ab2ed339519e3b92a54e5..f9c7679b1181f773652613917acea1ed17154964 100644 (file)
@@ -2,7 +2,7 @@
 # Process this file with autoconf to produce a configure script.
 
 AC_PREREQ(2.57)
-AC_INIT(pcat, 1.7.0, libdns@nlnetlabs.nl,pcat)
+AC_INIT(pcat, 1.6.17, libdns@nlnetlabs.nl,pcat)
 AC_CONFIG_SRCDIR([pcat.c])
 
 OURCPPFLAGS=''