diff --git a/ChangeLog b/ChangeLog index 843efeb..3aaf281 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2019-04-27 Philippe Troin + * tdiff.spec (Version): + * configure.ac (AC_INIT): + * README.md (Changelog): + * NEWS: + Update for release 0.7.1. + * inocache.c (ic_equal): Fix miscomparison in inode cache device numbers. diff --git a/NEWS b/NEWS index f6e23c4..ad2006a 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,13 @@ -*- outline -*- +* Release 0.7.1 +** April 27, 2019. + +- Fixed rare bug where files could be skipped (and misreported as + having no differences) if two files with the name inode number but + with different device numbers were scanned within the second + argument's subtree. + * Release 0.7 ** April 26, 2019. diff --git a/README.md b/README.md index b2cc2dd..3202ec5 100644 --- a/README.md +++ b/README.md @@ -125,24 +125,24 @@ along with this program. If not, see [http://www.gnu.org/licenses/]. ### From a release Download the [latest release from -GitHub](https://github.com/F-i-f/tdiff/releases/download/v0.7/tdiff-0.7.tar.gz) -or the [secondary mirror](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.tar.gz): +GitHub](https://github.com/F-i-f/tdiff/releases/download/v0.7.1/tdiff-0.7.1.tar.gz) +or the [secondary mirror](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz): * [Primary Site (GitHub)](https://github.com/F-i-f/tdiff/releases/): * Source: - [https://github.com/F-i-f/tdiff/releases/download/v0.7/tdiff-0.7.tar.gz](https://github.com/F-i-f/tdiff/releases/download/v0.7/tdiff-0.7.tar.gz) + [https://github.com/F-i-f/tdiff/releases/download/v0.7.1/tdiff-0.7.1.tar.gz](https://github.com/F-i-f/tdiff/releases/download/v0.7.1/tdiff-0.7.1.tar.gz) * Signature: - [https://github.com/F-i-f/tdiff/releases/download/v0.7/tdiff-0.7.tar.gz.asc](https://github.com/F-i-f/tdiff/releases/download/v0.7/tdiff-0.7.tar.gz.asc) + [https://github.com/F-i-f/tdiff/releases/download/v0.7.1/tdiff-0.7.1.tar.gz.asc](https://github.com/F-i-f/tdiff/releases/download/v0.7.1/tdiff-0.7.1.tar.gz.asc) * [Secondary Site](http://ftp.fifi.org/phil/tdiff/): * Source: - [http://ftp.fifi.org/phil/tdiff/tdiff-0.7.tar.gz](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.tar.gz) + [http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz) * Signature: - [http://ftp.fifi.org/phil/tdiff/tdiff-0.7.tar.gz.asc](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.tar.gz.asc) + [http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz.asc](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz.asc) The source code release are signed with the GPG key ID `0x88D51582`, @@ -155,7 +155,7 @@ mirror](http://ftp.fifi.org/phil/tdiff/). When downloading from the GitHub release pages, be careful to download the source code from the link named with the full file name -(_tdiff-0.7.tar.gz_), and **not** from the links marked _Source code +(_tdiff-0.7.1.tar.gz_), and **not** from the links marked _Source code (zip)_ or _Source code (tar.gz)_ as these are repository snapshots generated automatically by GitHub and require specialized tools to build (see [Building from GitHub](#from-the-github-repository)). @@ -164,8 +164,8 @@ build (see [Building from GitHub](#from-the-github-repository)). After downloading the sources, unpack and build with: ```shell -tar xvzf tdiff-0.7.tar.gz -cd tdiff-0.7 +tar xvzf tdiff-0.7.1.tar.gz +cd tdiff-0.7.1 ./configure make make install @@ -193,6 +193,14 @@ make install ## Changelog +### Version 0.7.1 +#### April 27, 2019. + +- Fixed rare bug where files could be skipped (and misreported as + having no differences) if two files with the name inode number but + with different device numbers were scanned within the second + argument's sub-tree. + ### Version 0.7 #### April 26, 2019. diff --git a/configure.ac b/configure.ac index d7e4128..89c8601 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -AC_INIT([tdiff],[0.7]) +AC_INIT([tdiff],[0.7.1]) AC_CONFIG_AUX_DIR([config.aux]) AC_CANONICAL_TARGET() FI_PROJECT() diff --git a/tdiff.spec b/tdiff.spec index f4bb92e..90ac9f3 100644 --- a/tdiff.spec +++ b/tdiff.spec @@ -1,5 +1,5 @@ Name: tdiff -Version: 0.7 +Version: 0.7.1 Release: 1%{?dist} Summary: Compare tree permissions, modes, ownership, xattrs, etc @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/zsh/site-functions/_tdiff %changelog +* Sat Apr 27 2019 Philippe Troin - 0.7.1-1 +- Upstream updated to 0.7.1. + * Fri Apr 26 2019 Philippe Troin - 0.7-1 - Upstream updated to 0.7. - Install manpage, more documentation.