Skip to content

Commit 6a8bd30

Browse files
committed
updated version numbers for release
1 parent 1660887 commit 6a8bd30

File tree

4 files changed

+35
-9
lines changed

4 files changed

+35
-9
lines changed

README.md

Lines changed: 31 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ getdns-python-bindings
33

44
Python bindings for getdns
55

6+
* Date: 2016-03-29
7+
* Github: https://github.com/getdnsapi/getdns-python-bindings
8+
* Current version: v1.0beta
9+
610
External dependencies
711
=====================
812

@@ -13,12 +17,11 @@ called "python-dev"
1317
Currently building against the getdns v0.9.0 release.
1418
getdns external dependencies include:
1519

16-
* [libldns from NLnet Labs](https://www.nlnetlabs.nl/projects/ldns/) version 1.6.11 or later (ldns requires ope
17-
nssl headers and libraries)
1820
* [libunbound from NLnet Labs](http://www.nlnetlabs.nl/projects/unbound/) version 1.4.16 or later
19-
* [libexpat](http://expat.sourceforge.net/) for libunbound.
2021
* [libidn from the FSF](http://www.gnu.org/software/libidn/) version 1.
21-
22+
* [libssl and libcrypto from the OpenSSL project](https://www.openssl.org/) version 0.9.7 or later.
23+
(Note: version 1.0.1 or later is required for TLS support,
24+
version 1.0.2 or later is required for TLS hostname authentication)
2225

2326
Building
2427
========
@@ -30,7 +33,7 @@ python setup.py build
3033
3134
During the development process and before the module is installed, I
3235
find it convenient to have a symlink in the current directory pointing
33-
to the library in the build directory:
36+
to the library in the build directory. For example:
3437
3538
```
3639
getdns.so -> build/lib.linux-i686-2.7/getdns.so
@@ -68,6 +71,29 @@ source tree in doc/_build/html. It is also available online at [readthedocs.org
6871
Changes from the earlier release
6972
================================
7073
74+
* A number of performance improvements.
75+
76+
* Installable via PyPi.
77+
78+
* Removed libevent dependency
79+
80+
* For consistency with Python 3, the Python 2 bindings now return
81+
Context() attributes as longs
82+
83+
* TSIG support
84+
85+
* GETDNS_AUTHENTICATION_HOSTNAME is replaced by
86+
GETDNS_AUTHENTICATION_REQUIRED (but remains available as an alias).
87+
Upstreams can now be configured with either a hostname or a SPKI
88+
pinset for TLS authentication (or both). If the
89+
GETDNS_AUTHENTICATION_REQUIRED option is used at least one piece of
90+
authentication information must be configured for each upstream, and
91+
all the configured authentication information for an upstream must
92+
validate.
93+
94+
Older changes
95+
=============
96+
7197
In addition to adding Python 3 support, we've changed the callback
7298
argument to the asynchronous methods to accept a callable by name,
7399
rather than as a literal string.

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = 'v0.6.0'
51+
version = 'v1.0beta'
5252
# The full version, including alpha/beta/rc tags.
53-
release = 'v0.6.0'
53+
release = 'v1.0beta'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

pygetdns.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#ifndef PYGETDNS_H
3333
#define PYGETDNS_H
3434

35-
#define PYGETDNS_VERSION "0.5.0"
35+
#define PYGETDNS_VERSION "v1.0beta"
3636
#define GETDNS_DOCSTRING "getdns bindings for Python (see http://www.getdnsapi.net)"
3737

3838
#define GETDNS_STR_IPV4 "IPv4"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
)
6767

6868
setup(name='getdns',
69-
version='0.6.1',
69+
version='v1.0beta',
7070
description='Python bindings for getdns',
7171
long_description=long_description,
7272
license='BSD',

0 commit comments

Comments
 (0)