Skip to content

Commit

Permalink
Preparing to release 1.7.0
Browse files Browse the repository at this point in the history
- Bump up version numbers
- Synchronize dependency version numbers
- Improve .gitignore
  • Loading branch information
farrokhi committed Jan 18, 2020
1 parent 5ea5968 commit fdedce3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ __pycache__/
*.py[cod]
*$py.class
.idea/
.vscode/
whois.cache

# C extensions
Expand Down
2 changes: 1 addition & 1 deletion dnseval.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

__author__ = 'Babak Farrokhi (babak@farrokhi.net)'
__license__ = 'BSD'
__version__ = "1.6.4"
__version__ = "1.7.0"
__progname__ = os.path.basename(sys.argv[0])
shutdown = False

Expand Down
2 changes: 1 addition & 1 deletion dnsping.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

__author__ = 'Babak Farrokhi (babak@farrokhi.net)'
__license__ = 'BSD'
__version__ = "1.6.4"
__version__ = "1.7.0"
__progname__ = os.path.basename(sys.argv[0])
shutdown = False

Expand Down
2 changes: 1 addition & 1 deletion dnstraceroute.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# Global Variables
__author__ = 'Babak Farrokhi (babak@farrokhi.net)'
__license__ = 'BSD'
__version__ = "1.6.4"
__version__ = "1.7.0"
_ttl = None
quiet = False
whois_cache = {}
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

setup(
name="dnsdiag",
version="1.6.4",
version="1.7.0",
packages=find_packages(),
scripts=["dnseval.py", "dnsping.py", "dnstraceroute.py"],
install_requires=['dnspython>=1.15.0', 'cymruwhois>=1.6'],
install_requires=['dnspython>=1.16.0', 'cymruwhois>=1.6'],

classifiers=[
"Topic :: System :: Networking",
Expand Down

0 comments on commit fdedce3

Please sign in to comment.