Merge pull request #391 from linkchecker/dev-version

Bump version in git to 10.0.0.dev0
This commit is contained in:
Marius Gedminas 2020-05-19 18:49:34 +03:00 committed by GitHub
commit e6e969f975
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ Function to check for updates.
import os
from .configuration import Version as CurrentVersion
from .url import get_content
from distutils.version import StrictVersion
from distutils.version import LooseVersion
# Use the Freecode submit file as source since that file gets updated
# only when releasing a new version.
@ -72,4 +72,4 @@ def get_online_version():
def is_newer_version(version):
"""Check if given version is newer than current version."""
return StrictVersion(version) > StrictVersion(CurrentVersion)
return LooseVersion(version) > LooseVersion(CurrentVersion)

View file

@ -47,7 +47,7 @@ from distutils.core import Distribution
from distutils.command.build import build
# the application version
AppVersion = "9.4.0"
AppVersion = "10.0.0.dev0"
# the application name
AppName = "LinkChecker"
Description = "check links in web documents or full websites"