diff --git a/CMakeLists.txt b/CMakeLists.txt
index 773f1aeaef725a4d8341c43a1b7a3b8802fcb49c..a6d2db7cf8b5d840590bedfe6e4774c18583e5e9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
 #  GL2PS, an OpenGL to PostScript Printing Library
-#  Copyright (C) 1999-2011 C. Geuzaine
+#  Copyright (C) 1999-2012 C. Geuzaine
 # 
 #  This program is free software; you can redistribute it and/or
 #  modify it under the terms of either:
@@ -49,7 +49,7 @@ option(ENABLE_PNG "Enable PNG support" ON)
 
 set(GL2PS_MAJOR_VERSION 1)
 set(GL2PS_MINOR_VERSION 3)
-set(GL2PS_PATCH_VERSION 6)
+set(GL2PS_PATCH_VERSION 7)
 set(GL2PS_EXTRA_VERSION "" CACHE STRING "GL2PS extra version string")
 
 set(GL2PS_VERSION "${GL2PS_MAJOR_VERSION}.${GL2PS_MINOR_VERSION}")
diff --git a/gl2ps.c b/gl2ps.c
index 2a484bcad00841de71a4400cac5d2217c8385dad..254c8a5124625a17ced9be2ae12ba9da61603d5c 100644
--- a/gl2ps.c
+++ b/gl2ps.c
@@ -1,6 +1,6 @@
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
- * Copyright (C) 1999-2011 C. Geuzaine
+ * Copyright (C) 1999-2012 C. Geuzaine
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of either:
diff --git a/gl2ps.h b/gl2ps.h
index 68b7c3b0aa7ceabe061321c4a23b0d4abca71cb0..12f86615c6241382b266a9684a80c48c569300ae 100644
--- a/gl2ps.h
+++ b/gl2ps.h
@@ -1,6 +1,6 @@
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
- * Copyright (C) 1999-2011 C. Geuzaine
+ * Copyright (C) 1999-2012 C. Geuzaine
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of either:
@@ -80,14 +80,14 @@
 
 #define GL2PS_MAJOR_VERSION 1
 #define GL2PS_MINOR_VERSION 3
-#define GL2PS_PATCH_VERSION 6
+#define GL2PS_PATCH_VERSION 7
 #define GL2PS_EXTRA_VERSION ""
 
 #define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \
                        0.01 * GL2PS_MINOR_VERSION + \
                        0.0001 * GL2PS_PATCH_VERSION)
 
-#define GL2PS_COPYRIGHT "(C) 1999-2011 C. Geuzaine"
+#define GL2PS_COPYRIGHT "(C) 1999-2012 C. Geuzaine"
 
 /* Output file formats (the values and the ordering are important!) */
 
diff --git a/gl2ps.tex b/gl2ps.tex
index d8d8e493364f588416280cefc26643ed07ac6e72..0955883a383e47738775ff4fed81d566fac45b89 100644
--- a/gl2ps.tex
+++ b/gl2ps.tex
@@ -1,6 +1,6 @@
 %
 %  GL2PS, an OpenGL to PostScript Printing Library
-%  Copyright (C) 1999-2011 C. Geuzaine
+%  Copyright (C) 1999-2012 C. Geuzaine
 %
 %  This program is free software; you can redistribute it and/or
 %  modify it under the terms of either:
@@ -62,7 +62,7 @@
 
 \title{GL2PS: an OpenGL to PostScript printing library}
 \author{Christophe Geuzaine}
-\date{Version 1.3.6, August 14 2011}
+\date{Version 1.3.7, September 2 2012}
 
 \maketitle
 
@@ -99,7 +99,7 @@ the OpenGL window.</em></small></td>
 </center>
 <h2>Download</h2>
 The latest stable version of GL2PS is <a
-href="http://geuz.org/gl2ps/src/gl2ps-1.3.6.tgz">gl2ps-1.3.6.tgz</a>.  Older
+href="http://geuz.org/gl2ps/src/gl2ps-1.3.7.tgz">gl2ps-1.3.7.tgz</a>.  Older
 versions and nightly source snapshots are available <a
 href="http://geuz.org/gl2ps/src/">here</a>.  For read-only svn access use:
 '<code>svn co https://geuz.org/svn/gl2ps/trunk gl2ps</code>' (username:
@@ -1040,6 +1040,7 @@ anymore.
 \item[1.3.6] (Aug 14, 2011) Added support for PixelZoom (set using
   glPixelZoom) in postscript images; fixed text rotation in TeX; added
   support for text alignment in SVG; fixed other minor bugs.
+\item[1.3.7] (Sep 2, 2012) Minor documentation and build system fixes.
 \end{description}
 
 \special{html:
diff --git a/gl2psTest.c b/gl2psTest.c
index 522f98e458a69625249a9df79099a9c7df1b5e13..599e485fb53fa086cab6b12ec0367cf449f1b38e 100644
--- a/gl2psTest.c
+++ b/gl2psTest.c
@@ -1,6 +1,6 @@
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
- * Copyright (C) 1999-2011 Christophe Geuzaine <geuz@geuz.org>
+ * Copyright (C) 1999-2012 Christophe Geuzaine <geuz@geuz.org>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of either:
diff --git a/gl2psTestSimple.c b/gl2psTestSimple.c
index 1f7be138d6a14c1c013d98dd899011cd32e47eba..7af0548226ff9c74c00840fb30b5c5e75bc4421d 100644
--- a/gl2psTestSimple.c
+++ b/gl2psTestSimple.c
@@ -1,6 +1,6 @@
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
- * Copyright (C) 1999-2011 Christophe Geuzaine <geuz@geuz.org>
+ * Copyright (C) 1999-2012 Christophe Geuzaine <geuz@geuz.org>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of either: