Bump version.
This commit is contained in:
parent
f598a8ad34
commit
b87318d1f3
|
|
@ -3,7 +3,7 @@ CC = @CC@
|
||||||
CFLAGS = @CFLAGS@ -I.
|
CFLAGS = @CFLAGS@ -I.
|
||||||
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
||||||
LIBS = @LIBS@
|
LIBS = @LIBS@
|
||||||
VERSION = 0.4
|
VERSION = 0.5
|
||||||
VPATH = $(srcdir)
|
VPATH = $(srcdir)
|
||||||
|
|
||||||
OBJ = attach.o master.o main.o
|
OBJ = attach.o master.o main.o
|
||||||
|
|
|
||||||
2
README
2
README
|
|
@ -96,7 +96,7 @@ to dtach when attaching.
|
||||||
|
|
||||||
5. CHANGES
|
5. CHANGES
|
||||||
|
|
||||||
The changes since version 0.4 are:
|
The changes in version 0.5 are:
|
||||||
- Fix fd leakage.
|
- Fix fd leakage.
|
||||||
- Prevent atexit from being called twice on dtach -A.
|
- Prevent atexit from being called twice on dtach -A.
|
||||||
|
|
||||||
|
|
|
||||||
2
dtach.1
2
dtach.1
|
|
@ -1,4 +1,4 @@
|
||||||
.TH dtach 1 "September 2001" "dtach 0.4"
|
.TH dtach 1 "November 2001" "dtach 0.5"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
dtach \- simple program that emulates the detach feature of screen.
|
dtach \- simple program that emulates the detach feature of screen.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: A simple program that emulates the detach feature of screen.
|
Summary: A simple program that emulates the detach feature of screen.
|
||||||
Name: dtach
|
Name: dtach
|
||||||
Version: 0.4
|
Version: 0.5
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GPL
|
License: GPL
|
||||||
URL: http://dtach.sourceforge.net
|
URL: http://dtach.sourceforge.net
|
||||||
|
|
@ -43,6 +43,10 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
||||||
%{_mandir}/*/*
|
%{_mandir}/*/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Nov 30 2001 Ned T. Crigler <crigler@hell-city.org> 0.5
|
||||||
|
- Fix fd leakage.
|
||||||
|
- Prevent atexit from being called twice on dtach -A.
|
||||||
|
|
||||||
* Fri Nov 30 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.4-1
|
* Fri Nov 30 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.4-1
|
||||||
- s/Copyright/License/
|
- s/Copyright/License/
|
||||||
- Minor description change
|
- Minor description change
|
||||||
|
|
|
||||||
2
main.c
2
main.c
|
|
@ -25,7 +25,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* The program version */
|
/* The program version */
|
||||||
#define VERSION "0.4"
|
#define VERSION "0.5"
|
||||||
|
|
||||||
/* Make sure the binary has a copyright. */
|
/* Make sure the binary has a copyright. */
|
||||||
const char copyright[] = "dtach - version " VERSION " (C)Copyright 2001 Ned T. Crigler";
|
const char copyright[] = "dtach - version " VERSION " (C)Copyright 2001 Ned T. Crigler";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue