Skip to content

Commit 9b9cecd

Browse files
authored
Merge pull request #453 from getdnsapi/release/1.6.0-beta.1
Release/1.6.0 beta.1
2 parents 2ac8480 + a6a2695 commit 9b9cecd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+734
-1369
lines changed

.gitattributes

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/.dir-locals.el export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.gitmodules export-ignore
5+
/.indent.pro export-ignore
6+
/.travis.yml export-ignore
7+
/getdns.pmdoc export-ignore
8+
/gldns/compare.sh export-ignore
9+
/gldns/import.sh export-ignore
10+
/project-doc export-ignore
11+
/src/test/tpkg export-ignore
12+
/src/test/README export-ignore
13+
/src/tools/Dockerfile export-ignore
14+
/src/tools/README.adoc export-ignore
15+
/src/util/import.sh export-ignore
16+
/src/mk-const-info.c.sh export-ignore
17+
/src/mk-symfiles.sh export-ignore
18+
/README export-ignore

CMakeLists.txt

+10-8
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,26 @@ endif ()
1313

1414
set(PACKAGE "getdns")
1515
set(PACKAGE_NAME "getdns")
16-
set(PACKAGE_VERSION "1.5.2")
16+
set(PACKAGE_VERSION "1.6.0")
1717
set(PACKAGE_BUGREPORT "[email protected]")
1818
set(PACKAGE_URL "https://getdnsapi.net")
1919

20-
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
21-
set(PACKAGE_TARNAME "${PACKAGE}-${PACKAGE_VERSION}")
22-
2320
# Dont forget to put a dash in front of the release candidate!!!
2421
# That is how it is done with semantic versioning!
25-
set(RELEASE_CANDIDATE "")
22+
set(RELEASE_CANDIDATE "-beta.1")
23+
24+
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
25+
set(PACKAGE_TARNAME "${PACKAGE}-${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
2626

2727
set(GETDNS_VERSION "${PACKAGE_VERSION}${RELEASE_CANDIDATE}")
28-
set(GETDNS_NUMERIC_VERSION 0x01050200)
28+
set(GETDNS_NUMERIC_VERSION 0x0105ffc1)
2929
set(API_VERSION "December 2015")
3030
set(API_NUMERIC_VERSION 0x07df0c00)
3131

32+
3233
# Version 11:2:1 in libtool-speak.
3334
set(GETDNS_VERSION_CURRENT 11)
34-
set(GETDNS_VERSION_REVISION 2)
35+
set(GETDNS_VERSION_REVISION 3)
3536
set(GETDNS_VERSION_AGE 1)
3637

3738
project(getdns VERSION ${PACKAGE_VERSION} LANGUAGES C)
@@ -219,6 +220,7 @@ check_include_file(stdint.h HAVE_STDINT_H)
219220
check_include_file(stdio.h HAVE_STDIO_H)
220221
check_include_file(stdlib.h HAVE_STDLIB_H)
221222
check_include_file(string.h HAVE_STRING_H)
223+
check_include_file(strings.h HAVE_STRINGS_H)
222224
check_include_file(time.h HAVE_TIME_H)
223225
check_include_file(unistd.h HAVE_UNISTD_H)
224226

@@ -1019,7 +1021,7 @@ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/getdns DESTINATION include)
10191021
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man3 DESTINATION share/man)
10201022

10211023
set(docdir share/doc/getdns)
1022-
install(FILES AUTHORS ChangeLog COPYING INSTALL LICENSE NEWS README.md DESTINATION ${docdir})
1024+
install(FILES AUTHORS ChangeLog COPYING LICENSE NEWS README.md DESTINATION ${docdir})
10231025
install(FILES spec/index.html DESTINATION ${docdir}/spec)
10241026
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/getdns.pc DESTINATION lib/pkgconfig)
10251027

ChangeLog

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
* 2019-11: Version 1.6.0-beta1
1+
* 2019-12-20: Version 1.6.0-beta.1
22
* Migration of build system to cmake. Build now works on Ubuntu,
3-
Windows 10 and macOS. Some notes on minor differences in the new cmake build:
3+
Windows 10 and macOS.
4+
Some notes on minor differences in the new cmake build:
45
* OpenSSL 1.0.2 or higher is now required
56
* libunbound 1.5.9 is now required
67
* Only libidn2 2.0.0 and later is supported (not libidn)
78
* Windows uses ENABLE_STUB_ONLY=ON as the default
8-
* Unit and regression tests work on Linux/macOS (but not Windows yet)
9+
* Unit and regression tests work on Linux/macOS
10+
(but not Windows yet)
911

1012
* 2019-04-03: Version 1.5.2
1113
* PR #424: Two small trust anchor fetcher fixes

0 commit comments

Comments
 (0)