diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 12 | ||||
-rwxr-xr-x | sbodl | 2 | ||||
-rwxr-xr-x | sbofixinfo | 2 | ||||
-rwxr-xr-x | sbolint | 2 | ||||
-rwxr-xr-x | sbopkglint | 2 |
6 files changed, 17 insertions, 5 deletions
@@ -1,7 +1,7 @@ PROJ=sbo-maintainer-tools # note to self: after changing this, "make version" to update all 4 scripts. -VERSION=0.8.0 +VERSION=0.8.1 PREFIX=/usr/local DESTDIR= @@ -1,6 +1,18 @@ The real ChangeLog is the git log. This is just a summary of the user-visible changes between releases. +New in 0.8.1: +============= + +This is a bugfix release. + +sbolint: +- When linting tarballs, files with extra dots in the filename (e.g. + foo.bar.tar.gz) were failing to validate. Fixed. +- Also handle tarballs created by file-roller, which list the directory + last rather than first. And tarballs created by 'tar cvfz foo.tar.gz + foo/*', which don't list the directory at all. + New in 0.8.0: ============= @@ -8,7 +8,7 @@ # 20170306 bkw: add caching # Don't edit the next line; use "make version" instead. -VERSION=0.8.0 +VERSION=0.8.1 : <<EOF =pod @@ -4,7 +4,7 @@ # companion piece to sbolint. # Don't edit the next line; use "make version" instead. -$VERSION="0.8.0"; +$VERSION="0.8.1"; =pod @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # Don't edit the next line; use "make version" instead. -$VERSION="0.8.0"; +$VERSION="0.8.1"; =pod @@ -1,7 +1,7 @@ #!/bin/bash # Don't edit the next line; use "make version" instead. -VER=0.8.0 +VER=0.8.1 : <<EOF =pod |