summaryrefslogtreecommitdiff
path: root/coverage/version.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/version.py')
-rw-r--r--coverage/version.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/coverage/version.py b/coverage/version.py
index 51e1310f..f95881cc 100644
--- a/coverage/version.py
+++ b/coverage/version.py
@@ -1,9 +1,12 @@
+# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
+# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
+
"""The version and URL for coverage.py"""
# This file is exec'ed in setup.py, don't import anything!
-__version__ = "4.0a6" # see detailed history in CHANGES.txt
+__version__ = "4.0a7" # see detailed history in CHANGES.txt
__url__ = "https://coverage.readthedocs.org"
if max(__version__).isalpha():
# For pre-releases, use a version-specific URL.
- __url__ += "/en/" + __version__
+ __url__ += "/en/coverage-" + __version__