mirror of https://github.com/getdnsapi/getdns.git
Prepare for 0.3.2 release
This commit is contained in:
parent
0e66d28be8
commit
afdf25340c
|
@ -1,4 +1,4 @@
|
||||||
* 2015-09-??: Version 0.3.2
|
* 2015-09-04: Version 0.3.2
|
||||||
* Fix returned upstreams list by getdns_context_get_api_information()
|
* Fix returned upstreams list by getdns_context_get_api_information()
|
||||||
* Fix some autoconf issues when srcdir != builddir
|
* Fix some autoconf issues when srcdir != builddir
|
||||||
* Fix remove build date from manpage version for reproducable builds
|
* Fix remove build date from manpage version for reproducable builds
|
||||||
|
@ -7,6 +7,7 @@
|
||||||
* --enable-stub-only configure option for stub only operation.
|
* --enable-stub-only configure option for stub only operation.
|
||||||
Stub mode will be the default. Removes the dependency on libunbound
|
Stub mode will be the default. Removes the dependency on libunbound
|
||||||
* --with-getdns_query compiles and installs the getdns_query tool too
|
* --with-getdns_query compiles and installs the getdns_query tool too
|
||||||
|
* Fix assert on context destruction from a callback in stub mode too.
|
||||||
|
|
||||||
* 2015-07-18: Version 0.3.1
|
* 2015-07-18: Version 0.3.1
|
||||||
* Fix repeating rdata fields
|
* Fix repeating rdata fields
|
||||||
|
|
|
@ -36,7 +36,7 @@ sinclude(./m4/ax_check_compile_flag.m4)
|
||||||
sinclude(./m4/pkg.m4)
|
sinclude(./m4/pkg.m4)
|
||||||
|
|
||||||
AC_INIT([getdns], [0.3.2], [stub-resolver@verisignlabs.com], [], [https://getdnsapi.net])
|
AC_INIT([getdns], [0.3.2], [stub-resolver@verisignlabs.com], [], [https://getdnsapi.net])
|
||||||
AC_SUBST(RELEASE_CANDIDATE, [rc1])
|
AC_SUBST(RELEASE_CANDIDATE, [])
|
||||||
|
|
||||||
# Set current date from system if not set
|
# Set current date from system if not set
|
||||||
AC_ARG_WITH([current-date],
|
AC_ARG_WITH([current-date],
|
||||||
|
@ -46,7 +46,7 @@ AC_ARG_WITH([current-date],
|
||||||
[CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"])
|
[CURRENT_DATE="`date -u +%Y-%m-%dT%H:%M:%SZ`"])
|
||||||
|
|
||||||
AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"])
|
AC_SUBST(GETDNS_VERSION, ["AC_PACKAGE_VERSION$RELEASE_CANDIDATE"])
|
||||||
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00030101])
|
AC_SUBST(GETDNS_NUMERIC_VERSION, [0x00030200])
|
||||||
AC_SUBST(API_VERSION, ["July 2015"])
|
AC_SUBST(API_VERSION, ["July 2015"])
|
||||||
AC_SUBST(API_NUMERIC_VERSION, [0x07df0700])
|
AC_SUBST(API_NUMERIC_VERSION, [0x07df0700])
|
||||||
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API"
|
GETDNS_COMPILATION_COMMENT="AC_PACKAGE_NAME $GETDNS_VERSION configured on $CURRENT_DATE for the $API_VERSION version of the API"
|
||||||
|
|
Loading…
Reference in New Issue