diff --git a/ChangeLog b/ChangeLog
index 7d485b6..d1e7202 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-05-31  Richard Kreckel  <kreckel@ginac.de>
+
+        * Version 1.1.1 released.
+
 2001-05-28  Richard Kreckel  <kreckel@ginac.de>
 
         * cln/cln.tex: documented problems with shared library on Sparc
diff --git a/INSTALL b/INSTALL
index 46a9cb1..329d20a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -29,9 +29,11 @@ to the CXXFLAGS. This will likely generate better code.
 
 If you use g++ from gcc-2.95.x on Sparc, add either "-O", "-O1" or
 "-O2 -fno-schedule-insns" to the CXXFLAGS. With full "-O2", g++ miscompiles
-the division routines. Also, on OSF/1 or Tru64 using gcc-2.95.x, you should
-specify --disable-shared because of linker problems with duplicate symbols
-in shared libraries.
+the division routines. If you use g++ older than 2.95.3 on Sparc you should
+also specify --disable-shared because of bad code produced in the shared
+library. Also, on OSF/1 or Tru64 using gcc-2.95.x, you should specify
+--disable-shared because of linker problems with duplicate symbols in shared
+libraries.
 
 More detailed installation instructions can be found in the documentation,
 in the doc/ directory.
diff --git a/NEWS b/NEWS
index 68ed33a..8878c38 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-2001-05-26, version 1.1.1
+2001-05-31, version 1.1.1
 =========================
 
 Implementation changes
diff --git a/configure.in b/configure.in
index 2af8fc7..0da2f3d 100644
--- a/configure.in
+++ b/configure.in
@@ -78,9 +78,9 @@ dnl * if any functions/classes have been added, removed or changed, increment
 dnl   CL_CURRENT and set CL_REVISION to 0,
 dnl * if any functions/classes have been added, increment CL_AGE,
 dnl * if backwards compatibility has been broken, set CL_AGE to 0.
-CL_CURRENT=1
-CL_REVISION=1
-CL_AGE=1
+CL_CURRENT=2
+CL_REVISION=0
+CL_AGE=0
 dnl make substitutions
 AC_SUBST(CL_CURRENT)
 AC_SUBST(CL_REVISION)