-
Notifications
You must be signed in to change notification settings - Fork 69
/
ChangeLog
93 lines (77 loc) · 1.79 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
3.0.0
=====
- Release wheels and source to PyPI with GH actions
- Try to make tests more resilient
- Don't build universal wheels
- Migrate CI to GH Actions
- Fix TXT CHAOS test
- Add support for CAA queries
- Support Python >= 3.6
- Bump pycares dependency
- Drop tasks.py
- Allow specifying dnsclass for queries
- Set URL to https
- Add license args in setup.py
- Converted Type Annotations to Py3 syntax Closes
- Only run mypy on cpython versions
- Also fix all type errors with latest mypy - pycares seems to have no typing / stubs so lets ignore it via `mypy.ini`
- setup: typing exists since Python 3.5
- Fix type annotation of gethostbyname()
- Updated README
2.0.0
=====
(changes since version 1.x)
- Drop support for Python < 3.5
- Add support for ANY queries
- Raise pycares dependency
2.0.0b2
=======
- Raise pycares dependency
2.0.0b1
=======
- Fix using typing on Python 3.7
2.0.0b0
=======
- Drop support for Python < 3.5
- Add support for ANY queries
- Raise pycares dependency
1.2.0
=====
- Add support for Python 3.7
- Fix CNAME test
- Add examples with `async` and `await`
- Fix Python version check
- Add gethostbyaddr
1.1.1
=====
- Use per-version requires for wheels
1.1.0
=====
- Add DNSResolver.gethostbyname()
- Build universal wheels
1.0.1
=====
- Fix including tests and ChangeLog in source distributions
1.0.0
=====
- Use pycares >= 1.0.0
- Fix tests
0.3.2
=====
- setup: Fix decoding in non-UTF-8 environments
0.3.1
=====
- Adapt to Trollius package rename
- Fixed stopping watching file descriptor
0.3.0
=====
- Add DNSResolver.cancel method
- Handle case when the Future returned by query() is cancelled
0.2.0
=====
- Add support for Trollius
- Don't make query() a coroutine, just return the future
- Raise ValueError if specified query type is invalid
0.1.0
=====
- Initial release