Browse Source

Merge pull request #417 from github/rel-0-9-9

Rel 0 9 9
pull/423/head v0.9.9
Ross McFarland 6 years ago
committed by GitHub
parent
commit
2ceb686cb4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions
  1. +2
    -1
      CHANGELOG.md
  2. +1
    -1
      octodns/__init__.py
  3. +2
    -0
      script/cibuild

+ 2
- 1
CHANGELOG.md View File

@ -1,4 +1,4 @@
## v0.9.9 - 2019-??-?? - Python 3.7 Support
## v0.9.9 - 2019-11-04 - Python 3.7 Support
* Extensive pass through the whole codebase to support Python 3
* Tons of updates to replace `def __cmp__` with `__eq__` and friends to
@ -23,6 +23,7 @@
* Bunch of additional unit tests and supporting config to exercise new code
and verify things that were run into during the Python 3 work
* lots of `six`ing of things
* Validate Record name & fqdn length
## v0.9.8 - 2019-09-30 - One with no changes b/c PyPi description problems


+ 1
- 1
octodns/__init__.py View File

@ -3,4 +3,4 @@
from __future__ import absolute_import, division, print_function, \
unicode_literals
__VERSION__ = '0.9.8'
__VERSION__ = '0.9.9'

+ 2
- 0
script/cibuild View File

@ -27,4 +27,6 @@ echo "## lint ##################################################################
script/lint
echo "## tests/coverage ##############################################################"
script/coverage
echo "## validate setup.py build #####################################################"
python setup.py build
echo "## complete ####################################################################"

Loading…
Cancel
Save