Skip to content

Commit

Permalink
Release 0.7.2.
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.2.
  • Loading branch information
F-i-f committed Apr 30, 2019
1 parent 655df5e commit a004baa
Show file tree
Hide file tree
Showing 5 changed files with 34 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-30 Philippe Troin <phil@fifi.org>

* tdiff.spec (Version):
* configure.ac (AC_INIT):
* README.md (Changelog):
* NEWS:
Update for release 0.7.2.

* tests/error.out.gold: Update for the error rephrasing.

* tests/error.test (readdir_filter): Create, substitute getdents
Expand Down
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
-*- outline -*-

* Release 0.7.2
** April 30, 2019.

- Fix crash when an unreadable directory is encountered.
- Fix regression failures on odd systems.
- Fix display overflow in --version.

* Release 0.7.1
** April 27, 2019.

Expand Down
25 changes: 16 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.1/tdiff-0.7.1.tar.gz)
or the [secondary mirror](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz):
GitHub](https://github.com/F-i-f/tdiff/releases/download/v0.7.2/tdiff-0.7.2.tar.gz)
or the [secondary mirror](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.2.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.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)
[https://github.com/F-i-f/tdiff/releases/download/v0.7.2/tdiff-0.7.2.tar.gz](https://github.com/F-i-f/tdiff/releases/download/v0.7.2/tdiff-0.7.2.tar.gz)

* Signature:
[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)
[https://github.com/F-i-f/tdiff/releases/download/v0.7.2/tdiff-0.7.2.tar.gz.asc](https://github.com/F-i-f/tdiff/releases/download/v0.7.2/tdiff-0.7.2.tar.gz.asc)

* [Secondary Site](http://ftp.fifi.org/phil/tdiff/):

* Source:
[http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.1.tar.gz)
[http://ftp.fifi.org/phil/tdiff/tdiff-0.7.2.tar.gz](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.2.tar.gz)

* Signature:
[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)
[http://ftp.fifi.org/phil/tdiff/tdiff-0.7.2.tar.gz.asc](http://ftp.fifi.org/phil/tdiff/tdiff-0.7.2.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.1.tar.gz_), and **not** from the links marked _Source code
(_tdiff-0.7.2.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.1.tar.gz
cd tdiff-0.7.1
tar xvzf tdiff-0.7.2.tar.gz
cd tdiff-0.7.2
./configure
make
make install
Expand Down Expand Up @@ -193,6 +193,13 @@ make install

## Changelog

### Version 0.7.2
#### April 30, 2019.

- Fix crash when an unreadable directory is encountered.
- Fix regression failures on odd systems.
- Fix display overflow in --version.

### Version 0.7.1
#### April 27, 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.1])
AC_INIT([tdiff],[0.7.2])
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.1
Version: 0.7.2
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
* Tue Apr 30 2019 Philippe Troin <phil@fifi.org> - 0.7.2-1
- Upstream updated to 0.7.2.

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

Expand Down

0 comments on commit a004baa

Please sign in to comment.