aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS10
-rwxr-xr-xsbolint2
2 files changed, 10 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 10d3002..cd43811 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,22 @@
The real ChangeLog is the git log. This is just a summary of the
user-visible changes between releases.
-New in 0.9.7:
+New in 0.9.8:
=============
+- Python hashed URL check now catches pypi.python.org, too.
+- Python hashed URL check demoted to a note (too many of them in
+ the repo currently).
+
+New in 0.9.7.2:
+===============
sbolint:
- Check package name ($PRGNAM) against a list of packages included in
Slackware. It's an error if $PRGNAM is already included in Slackware.
It's a case-insensitive match, so e.g. a user package called "mplayer"
would match Slackware's "MPlayer".
+- Python URLs (files.pythonhosted.org) with 60-digit hash now trigger
+ a warning that shows short URL.
New in 0.9.6.2:
===============
diff --git a/sbolint b/sbolint
index d0d9e6e..96c87af 100755
--- a/sbolint
+++ b/sbolint
@@ -1438,7 +1438,7 @@ sub check_pypi_url {
# HTTPS transaction.
$newurl = "https://files.pythonhosted.org/packages/source/$initial/$srcnam/$filename";
if($url ne $newurl) {
- log_warning("$file: canonical pypi URL should be $newurl");
+ log_note("$file: canonical pypi URL should be $newurl");
}
}