Skip to content

Commit

Permalink
Release 0.8.5.
Browse files Browse the repository at this point in the history
* tdiff.spec:
* README.md:
* NEWS:
Add changelog, update to 0.8.5.

* configure.ac: Update to 0.8.5.
  • Loading branch information
F-i-f committed Nov 2, 2019
1 parent e619f80 commit 257f37e
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 12 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
2019-11-01 Philippe Troin <phil@fifi.org>

* configure.ac: Update to 0.8.5.

* tdiff.spec:
* README.md:
* NEWS:
Add changelog, update to 0.8.5.

* tdiff.c (get_terminal_width): Change terminal width environment
variable to COLUMNS.
(get_terminal_width): Ignore zero terminal width as returned by
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.8.5
** November 1, 2019.

** Bugs fixed:

- Minor bug fixes terminal width handling.
- Improvements in .spec cross-distribution compatibility.

* Release 0.8.4
** June 14, 2019.

Expand Down
26 changes: 17 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,24 +166,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.8.4/tdiff-0.8.4.tar.gz)
or the [secondary mirror](http://ftp.fifi.org/phil/tdiff/tdiff-0.8.4.tar.gz):
GitHub](https://github.com/F-i-f/tdiff/releases/download/v0.8.5/tdiff-0.8.5.tar.gz)
or the [secondary mirror](http://ftp.fifi.org/phil/tdiff/tdiff-0.8.5.tar.gz):

* [Primary Site (GitHub)](https://github.com/F-i-f/tdiff/releases/):

* Source:
[https://github.com/F-i-f/tdiff/releases/download/v0.8.4/tdiff-0.8.4.tar.gz](https://github.com/F-i-f/tdiff/releases/download/v0.8.4/tdiff-0.8.4.tar.gz)
[https://github.com/F-i-f/tdiff/releases/download/v0.8.5/tdiff-0.8.5.tar.gz](https://github.com/F-i-f/tdiff/releases/download/v0.8.5/tdiff-0.8.5.tar.gz)

* Signature:
[https://github.com/F-i-f/tdiff/releases/download/v0.8.4/tdiff-0.8.4.tar.gz.asc](https://github.com/F-i-f/tdiff/releases/download/v0.8.4/tdiff-0.8.4.tar.gz.asc)
[https://github.com/F-i-f/tdiff/releases/download/v0.8.5/tdiff-0.8.5.tar.gz.asc](https://github.com/F-i-f/tdiff/releases/download/v0.8.5/tdiff-0.8.5.tar.gz.asc)

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

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

* Signature:
[http://ftp.fifi.org/phil/tdiff/tdiff-0.8.4.tar.gz.asc](http://ftp.fifi.org/phil/tdiff/tdiff-0.8.4.tar.gz.asc)
[http://ftp.fifi.org/phil/tdiff/tdiff-0.8.5.tar.gz.asc](http://ftp.fifi.org/phil/tdiff/tdiff-0.8.5.tar.gz.asc)


The source code release are signed with the GPG key ID `0x88D51582`,
Expand All @@ -196,7 +196,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.8.4.tar.gz_), and **not** from the links marked _Source code
(_tdiff-0.8.5.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 @@ -205,8 +205,8 @@ build (see [Building from GitHub](#from-the-github-repository)).
After downloading the sources, unpack and build with:

```shell
tar xvzf tdiff-0.8.4.tar.gz
cd tdiff-0.8.4
tar xvzf tdiff-0.8.5.tar.gz
cd tdiff-0.8.5
./configure
make
make check
Expand Down Expand Up @@ -238,6 +238,14 @@ make install-pdf install-html # Optional

## Changelog

### Version 0.8.5
#### November 1, 2019.

##### Bugs fixed:

- Minor bug fixes terminal width handling.
- Improvements in .spec cross-distribution compatibility.

### Version 0.8.4
#### June 14, 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.8.4])
AC_INIT([tdiff],[0.8.5])
AC_CONFIG_AUX_DIR([config.aux])
AC_CANONICAL_TARGET()
FI_PROJECT()
Expand Down
9 changes: 7 additions & 2 deletions tdiff.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: tdiff
Version: 0.8.4
Release: 3%{?dist}
Version: 0.8.5
Release: 1%{?dist}
Summary: Compare tree permissions, modes, ownership, xattrs, etc

License: GPLv3
Expand Down Expand Up @@ -42,6 +42,11 @@ rm -rf $RPM_BUILD_ROOT
%{_docdir}/%{name}

%changelog
* Sat Nov 2 2019 Philippe Troin <phil@fifi.org> - 0.8.5-1
- Upstream release 0.8.5:
* Minor bug fixes terminal width handling.
* Improvements in .spec cross-distribution compatibility.

* Sun Aug 25 2019 Philippe Troin <phil@fifi.org> - 0.8.4-3
- Add to BuildRequires.
- Configure with --docdir for non-RHEL/Fedora distributions.
Expand Down

0 comments on commit 257f37e

Please sign in to comment.