Browse Source

Prepare for CLN 1.3.0 release.

Set version number and update copyright strings.
master
Richard Kreckel 16 years ago
parent
commit
b0ecd98798
  1. 9
      NEWS
  2. 3
      README
  3. 4
      configure.ac
  4. 6
      doc/cln.texi
  5. 3
      src/base/cl_free.cc

9
NEWS

@ -1,3 +1,12 @@
2009-xx-xx, version 1.3.0
=========================
Other changes
-------------
* Implemented a more portable module dependency mechanism.
2008-04-05, version 1.2.2 2008-04-05, version 1.2.2
========================= =========================

3
README

@ -1,7 +1,8 @@
Class Library for Numbers Class Library for Numbers
Copyright (c) Bruno Haible 1988-2008 Copyright (c) Bruno Haible 1988-2008
Copyright (c) Richard Kreckel 2000-2008
Copyright (c) Richard Kreckel 2000-2009
Copyright (c) Alexei Sheplyakov 2008
GPL GPL

4
configure.ac

@ -1,8 +1,8 @@
dnl run autoreconf -iv to produce the configure script. dnl run autoreconf -iv to produce the configure script.
m4_define([cl_version_major], [1]) m4_define([cl_version_major], [1])
m4_define([cl_version_minor], [2])
m4_define([cl_version_patchlevel], [2])
m4_define([cl_version_minor], [3])
m4_define([cl_version_patchlevel], [0])
m4_define([cl_version], [cl_version_major.cl_version_minor.cl_version_patchlevel]) m4_define([cl_version], [cl_version_major.cl_version_minor.cl_version_patchlevel])
dnl Libtool's library version information for CLN. dnl Libtool's library version information for CLN.

6
doc/cln.texi

@ -36,7 +36,8 @@ Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and
Richard B. Kreckel, @code{<kreckel@@ginac.de>}. Richard B. Kreckel, @code{<kreckel@@ginac.de>}.
Copyright (C) Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008. Copyright (C) Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008.
Copyright (C) Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008.
Copyright (C) Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009.
Copyright (C) Alexei Sheplyakov 2008.
Permission is granted to make and distribute verbatim copies of Permission is granted to make and distribute verbatim copies of
this manual provided the copyright notice and this permission notice this manual provided the copyright notice and this permission notice
@ -72,7 +73,8 @@ by the author.
@vskip 0pt plus 1filll @vskip 0pt plus 1filll
Copyright @copyright{} Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008. Copyright @copyright{} Bruno Haible 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008.
@sp 0 @sp 0
Copyright @copyright{} Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008.
Copyright @copyright{} Richard B. Kreckel 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009.
Copyright @copyright{} Alexei Sheplyakov 2008.
@sp 2 @sp 2
Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and Published by Bruno Haible, @code{<haible@@clisp.cons.org>} and

3
src/base/cl_free.cc

@ -34,7 +34,8 @@ void cl_free_heap_object (cl_heap* pointer)
static const char * copyright_notice[] = { static const char * copyright_notice[] = {
" \n" " \n"
"Copyright (c) Bruno Haible 1988-2008 \n" "Copyright (c) Bruno Haible 1988-2008 \n"
"Copyright (c) Richard Kreckel 2000-2008 \n"
"Copyright (c) Richard Kreckel 2000-2009 \n"
"Copyright (c) Alexei Sheplyakov 2008 \n"
" \n" " \n"
"This program is free software; you can redistribute it and/or modify\n" "This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n" "it under the terms of the GNU General Public License as published by\n"

Loading…
Cancel
Save