Skip to content

Commit

Permalink
Release 0.7.1.
Browse files Browse the repository at this point in the history
* tdiff.spec (Version):
* configure.ac (AC_INIT):
* README.md (Changelog):
* NEWS:
Update for release 0.7.1.
  • Loading branch information
F-i-f committed Apr 27, 2019
1 parent bfc6346 commit 2916c60
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 11 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
2019-04-27 Philippe Troin <phil@fifi.org>

* 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.

Expand Down
8 changes: 8 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
26 changes: 17 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`,
Expand All @@ -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)).
Expand All @@ -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
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

AC_INIT([tdiff],[0.7])
AC_INIT([tdiff],[0.7.1])
AC_CONFIG_AUX_DIR([config.aux])
AC_CANONICAL_TARGET()
FI_PROJECT()
Expand Down
5 changes: 4 additions & 1 deletion tdiff.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: tdiff
Version: 0.7
Version: 0.7.1
Release: 1%{?dist}
Summary: Compare tree permissions, modes, ownership, xattrs, etc

Expand Down Expand Up @@ -37,6 +37,9 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/zsh/site-functions/_tdiff

%changelog
* Sat Apr 27 2019 Philippe Troin <phil@fifi.org> - 0.7.1-1
- Upstream updated to 0.7.1.

* Fri Apr 26 2019 Philippe Troin <phil@fifi.org> - 0.7-1
- Upstream updated to 0.7.
- Install manpage, more documentation.
Expand Down

0 comments on commit 2916c60

Please sign in to comment.