Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit c979e8a

Browse files
author
Sean Middleditch
authored
Merge pull request #45 from seanmiddleditch/develop
Release 0.23
2 parents d034af7 + 485b29f commit c979e8a

File tree

7 files changed

+30
-3
lines changed

7 files changed

+30
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ m4/*.m4
2222
missing
2323
stamp-h1
2424
compile
25+
ar-lib
26+
test-driver
2527

2628
telnet-client
2729
telnet-proxy

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Process this file with automake to generate Makefile.in
22
ACLOCAL_AMFLAGS = -I m4 --install
33
AM_CFLAGS = $(zlib_CFLAGS)
4-
EXTRA_DIST = Doxyfile libtelnet.pc.in libtelnet-uninstalled.pc.in
4+
EXTRA_DIST = Doxyfile libtelnet.pc.in libtelnet-uninstalled.pc.in msvc2008 msvc2010 autogen.sh autogen-clean.sh
55
SUBDIRS = . doc util test
66

77
include_HEADERS = libtelnet.h

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 0.23
2+
============
3+
4+
* Fixed release errors
5+
6+
Version 0.22
7+
============
8+
9+
* EOL handling fixes
10+
* allocation fixes to Q option states
11+
* portability fixes
12+
113
Version 0.21
214
============
315

autogen-clean.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
3+
if [ -f Makefile ]; then
4+
echo "Making make distclean..."
5+
make distclean
6+
fi
7+
8+
echo "Removing autogenned files..."
9+
rm -f aclocal.m4 depcomp config.guess config.sub configure install-sh missing mkinstalldirs Makefile.in ltmain.sh stamp-h.in */Makefile.in ltconfig stamp-h config.h.in
10+
rm -rf autom4te.cache
11+
echo "Done."

autogen.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
autoreconf -v --install --symlink --force || exit 1

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.58])
5-
AC_INIT([libtelnet], [0.21], [http://github.com/elanthis/libtelnet/tree/master])
5+
AC_INIT([libtelnet], [0.23], [http://github.com/elanthis/libtelnet/tree/master])
66
#AC_CONFIG_AUX_DIR([auxfiles])
77
AC_CONFIG_HEADERS([config.h])
88
AC_CONFIG_MACRO_DIR([m4])

libtelnet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* \file libtelnet.h
3636
*
37-
* \version 0.21
37+
* \version 0.23
3838
*
3939
* \author Sean Middleditch <[email protected]>
4040
*/

0 commit comments

Comments
 (0)