Bump dnspython from 2.2.1 to 2.3.0 (#1975)

* Bump dnspython from 2.2.1 to 2.3.0

Bumps [dnspython](https://github.com/rthalley/dnspython) from 2.2.1 to 2.3.0.
- [Release notes](https://github.com/rthalley/dnspython/releases)
- [Changelog](https://github.com/rthalley/dnspython/blob/master/doc/whatsnew.rst)
- [Commits](https://github.com/rthalley/dnspython/compare/v2.2.1...v2.3.0)

---
updated-dependencies:
- dependency-name: dnspython
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update dnspython==2.3.0

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>

[skip ci]
This commit is contained in:
dependabot[bot] 2023-03-02 20:54:32 -08:00 committed by GitHub
parent 6910079330
commit 32c06a8b72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
137 changed files with 7699 additions and 4277 deletions

View file

@ -20,27 +20,39 @@
#: MAJOR
MAJOR = 2
#: MINOR
MINOR = 2
MINOR = 3
#: MICRO
MICRO = 1
MICRO = 0
#: RELEASELEVEL
RELEASELEVEL = 0x0f
RELEASELEVEL = 0x0F
#: SERIAL
SERIAL = 0
SERIAL = 1
if RELEASELEVEL == 0x0f: # pragma: no cover
if RELEASELEVEL == 0x0F: # pragma: no cover lgtm[py/unreachable-statement]
#: version
version = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
elif RELEASELEVEL == 0x00: # pragma: no cover
version = '%d.%d.%ddev%d' % \
(MAJOR, MINOR, MICRO, SERIAL)
elif RELEASELEVEL == 0x0c: # pragma: no cover
version = '%d.%d.%drc%d' % \
(MAJOR, MINOR, MICRO, SERIAL)
else: # pragma: no cover
version = '%d.%d.%d%x%d' % \
(MAJOR, MINOR, MICRO, RELEASELEVEL, SERIAL)
version = "%d.%d.%d" % (MAJOR, MINOR, MICRO) # lgtm[py/unreachable-statement]
elif RELEASELEVEL == 0x00: # pragma: no cover lgtm[py/unreachable-statement]
version = "%d.%d.%ddev%d" % (
MAJOR,
MINOR,
MICRO,
SERIAL,
) # lgtm[py/unreachable-statement]
elif RELEASELEVEL == 0x0C: # pragma: no cover lgtm[py/unreachable-statement]
version = "%d.%d.%drc%d" % (
MAJOR,
MINOR,
MICRO,
SERIAL,
) # lgtm[py/unreachable-statement]
else: # pragma: no cover lgtm[py/unreachable-statement]
version = "%d.%d.%d%x%d" % (
MAJOR,
MINOR,
MICRO,
RELEASELEVEL,
SERIAL,
) # lgtm[py/unreachable-statement]
#: hexversion
hexversion = MAJOR << 24 | MINOR << 16 | MICRO << 8 | RELEASELEVEL << 4 | \
SERIAL
hexversion = MAJOR << 24 | MINOR << 16 | MICRO << 8 | RELEASELEVEL << 4 | SERIAL