summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed T. Crigler <crigler@users.sourceforge.net>2001-11-30 23:25:21 +0000
committerNed T. Crigler <crigler@users.sourceforge.net>2001-11-30 23:25:21 +0000
commitb87318d1f3de4b4e6dedf2571c150d29b41716ce (patch)
tree47b1237e9e310347bd1d9168184349082b280e3e
parentf598a8ad34f7457c0440a93bdd78a2466718b345 (diff)
Bump version.
-rw-r--r--Makefile.in2
-rw-r--r--README2
-rw-r--r--dtach.12
-rw-r--r--dtach.spec6
-rw-r--r--main.c2
5 files changed, 9 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 4fb5030..f1eef7b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -3,7 +3,7 @@ CC = @CC@
CFLAGS = @CFLAGS@ -I.
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
-VERSION = 0.4
+VERSION = 0.5
VPATH = $(srcdir)
OBJ = attach.o master.o main.o
diff --git a/README b/README
index c3744e8..1018ccf 100644
--- a/README
+++ b/README
@@ -96,7 +96,7 @@ to dtach when attaching.
5. CHANGES
-The changes since version 0.4 are:
+The changes in version 0.5 are:
- Fix fd leakage.
- Prevent atexit from being called twice on dtach -A.
diff --git a/dtach.1 b/dtach.1
index 7dd3ec3..63621f9 100644
--- a/dtach.1
+++ b/dtach.1
@@ -1,4 +1,4 @@
-.TH dtach 1 "September 2001" "dtach 0.4"
+.TH dtach 1 "November 2001" "dtach 0.5"
.SH NAME
dtach \- simple program that emulates the detach feature of screen.
.SH SYNOPSIS
diff --git a/dtach.spec b/dtach.spec
index 911f26b..7de10d4 100644
--- a/dtach.spec
+++ b/dtach.spec
@@ -1,6 +1,6 @@
Summary: A simple program that emulates the detach feature of screen.
Name: dtach
-Version: 0.4
+Version: 0.5
Release: 1
License: GPL
URL: http://dtach.sourceforge.net
@@ -43,6 +43,10 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
%{_mandir}/*/*
%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
- s/Copyright/License/
- Minor description change
diff --git a/main.c b/main.c
index 06afb5b..f7b7e30 100644
--- a/main.c
+++ b/main.c
@@ -25,7 +25,7 @@
*/
/* The program version */
-#define VERSION "0.4"
+#define VERSION "0.5"
/* Make sure the binary has a copyright. */
const char copyright[] = "dtach - version " VERSION " (C)Copyright 2001 Ned T. Crigler";