diff --git a/Makefile b/Makefile
index 177066c42ff6af99e1bc3ea3971c5e42479b1bd1..6839ef818f82a09a2aae984941de23db102ffb76 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-RELEASE = 1.3.3
+RELEASE = 1.3.4
 DATE = `date "+%Y%m%d"`
 
 clean:
diff --git a/doc/gl2ps.tex b/doc/gl2ps.tex
index fdd88427e3c84b255b766b6bf8741f82b3ae95f8..b311c2a0b904feddf5928a50919eeacad9901e80 100644
--- a/doc/gl2ps.tex
+++ b/doc/gl2ps.tex
@@ -1,4 +1,4 @@
-%  $Id: gl2ps.tex,v 1.229 2009-03-08 19:12:55 geuzaine Exp $
+%  $Id: gl2ps.tex,v 1.230 2009-09-30 21:50:19 geuzaine Exp $
 %
 %  GL2PS, an OpenGL to PostScript Printing Library
 %  Copyright (C) 1999-2009 C. Geuzaine
@@ -28,7 +28,9 @@
 %  library in the file named "COPYING.GL2PS"; if not, I will be glad
 %  to provide one.
 % 
-%  For the latest info about gl2ps, see http://www.geuz.org/gl2ps/.
+%  For the latest info about gl2ps and a full list of contributors,
+%  see http://www.geuz.org/gl2ps/.
+%
 %  Please report all bugs and problems to <gl2ps@geuz.org>.
 
 \documentclass[10pt]{article}
@@ -59,7 +61,7 @@
 
 \title{GL2PS: an OpenGL to PostScript printing library}
 \author{Christophe Geuzaine}
-\date{Version 1.3.3, 28 February 2009}
+\date{Version 1.3.4, September 30 2009}
 
 \maketitle
 
@@ -92,7 +94,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.3.tgz">gl2ps-1.3.3.tgz</a>.
+<a href="http://geuz.org/gl2ps/src/gl2ps-1.3.4.tgz">gl2ps-1.3.4.tgz</a>.
 Older versions and nightly CVS snapshots are available 
 <a href="http://geuz.org/gl2ps/src/">here</a>.
 <p>
@@ -858,13 +860,15 @@ PostScript;
 \dd{gl2psSpecial} code;
 %
 \noemail{Alexander Danilov}{danilov@lanl.gov} for a polygon offset bug
-fix.
-
-%\noemail{Ben Fletcher}{ben.fletcher@dsto.defence.gov.au} for a
-%stippling pattern parser bug report.
-
-%\noemail{Jason Anderssen}{janderssen@exactal.com} for memory leak fix
-% in pdf code
+fix;
+%
+\noemail{Ben Fletcher}{ben.fletcher@dsto.defence.gov.au} for a
+stippling pattern parser bug report;
+%
+\noemail{Jason Anderssen}{janderssen@exactal.com} for memory leak fix
+in pdf code;
+%
+\noemail{Sylvestre Ledru}{sylvestre.ledru@scilab.org} for SVG patches.
 
 \section{Links}
 \label{sec:links}
@@ -1002,6 +1006,8 @@ seem to be available anymore).
 \item[1.3.3] (Feb 28, 2009) Fixed memory leak in PDF code; added
   \dd{gl2psGetOptions}; nicer SVG rendering (crispEdges, font attributes);
   fixed possible divisions by zero.
+\item[1.3.4] (Sep 30, 2009) Add support for rotated text in SVG output;
+  fixed MSVC warnings.
 \end{description}
 
 \end{document}
diff --git a/gl2ps.c b/gl2ps.c
index 120926f90384bf19b5a11cda787917a01a399202..4772ea013e0a53db1575b9af15e95d85183df292 100644
--- a/gl2ps.c
+++ b/gl2ps.c
@@ -27,31 +27,9 @@
  * library in the file named "COPYING.GL2PS"; if not, I will be glad
  * to provide one.
  *
- * Contributors:
- *   Michael Sweet <mike@easysw.com>
- *   Marc Ume <marc.ume@digitalgraphics.be>
- *   Jean-Francois Remacle <remacle@gce.ucl.ac.be>
- *   Bart Kaptein <B.L.Kaptein@lumc.nl>
- *   Quy Nguyen-Dai <quy@nguyendai.org>
- *   Sam Buss <sbuss@ucsd.edu>
- *   Shane Hill <Shane.Hill@dsto.defence.gov.au>
- *   Romain Boman <r_boman@yahoo.fr>
- *   Rouben Rostamian <rostamian@umbc.edu>
- *   Diego Santa Cruz <Diego.SantaCruz@epfl.ch>
- *   Shahzad Muzaffar <Shahzad.Muzaffar@cern.ch>
- *   Lassi Tuura <lassi.tuura@cern.ch>
- *   Guy Barrand <barrand@lal.in2p3.fr>
- *   Prabhu Ramachandran <prabhu@aero.iitm.ernet.in>
- *   Micha Bieber <bieber@traits.de>
- *   Olivier Couet <couet@mail.cern.ch>
- *   Shai Ayal <shaiay@gmail.com>
- *   Fabian Wenzel <wenzel@tu-harburg.de>
- *   Ian D. Gay <gay@sfu.ca>
- *   Cosmin Truta <cosmin@cs.toronto.edu>
- *   Baiju Devani <b.devani@gmail.com>
- *   Alexander Danilov <danilov@lanl.gov>
+ * For the latest info about gl2ps and a full list of contributors,
+ * see http://www.geuz.org/gl2ps/.
  *
- * For the latest info about gl2ps, see http://www.geuz.org/gl2ps/.
  * Please report all bugs and problems to <gl2ps@geuz.org>.
  */
 
diff --git a/gl2ps.h b/gl2ps.h
index 20b1caf831bcfaa134cad91e3ab0ad03f560ef67..7af3cbade1c529d793b1200cbbb8b5cd931181ff 100644
--- a/gl2ps.h
+++ b/gl2ps.h
@@ -27,7 +27,9 @@
  * library in the file named "COPYING.GL2PS"; if not, I will be glad
  * to provide one.
  *
- * For the latest info about gl2ps, see http://www.geuz.org/gl2ps/.
+ * For the latest info about gl2ps and a full list of contributors,
+ * see http://www.geuz.org/gl2ps/.
+ *
  * Please report all bugs and problems to <gl2ps@geuz.org>.
  */
 
@@ -77,7 +79,7 @@
 
 #define GL2PS_MAJOR_VERSION 1
 #define GL2PS_MINOR_VERSION 3
-#define GL2PS_PATCH_VERSION 3
+#define GL2PS_PATCH_VERSION 4
 #define GL2PS_EXTRA_VERSION "-cvs"
 
 #define GL2PS_VERSION (GL2PS_MAJOR_VERSION + \
diff --git a/gl2psTest.c b/gl2psTest.c
index 63e0326c26e19b62c62f6a7d4a2269c8e4bdb586..1486079e62acf52e981b87f8b8ad1039f88c789f 100644
--- a/gl2psTest.c
+++ b/gl2psTest.c
@@ -1,7 +1,7 @@
-/* $Id: gl2psTest.c,v 1.84 2007-05-02 20:57:15 geuzaine Exp $ */
+/* $Id: gl2psTest.c,v 1.85 2009-09-30 21:50:19 geuzaine Exp $ */
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
- * Copyright (C) 1999-2007 Christophe Geuzaine <geuz@geuz.org>
+ * Copyright (C) 1999-2009 Christophe Geuzaine <geuz@geuz.org>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of either:
@@ -28,12 +28,9 @@
  * library in the file named "COPYING.GL2PS"; if not, I will be glad
  * to provide one.
  *
- * Contributors:
- *   Rouben Rostamian <rostamian@umbc.edu>
- *   Guy Barrand <barrand@lal.in2p3.fr>
- *   Micha Bieber <bieber@traits.de>
+ * For the latest info about gl2ps and a full list of contributors,
+ * see http://www.geuz.org/gl2ps/.
  *
- * For the latest info about gl2ps, see http://www.geuz.org/gl2ps/.
  * Please report all bugs and problems to <gl2ps@geuz.org>.
  */
 
diff --git a/gl2psTestSimple.c b/gl2psTestSimple.c
index 8fa9bd501cad2d62e525fbde498af786835ae4bd..a8644c3abb9e071abdfb320029ba686f44816b00 100644
--- a/gl2psTestSimple.c
+++ b/gl2psTestSimple.c
@@ -1,7 +1,7 @@
-/* $Id: gl2psTestSimple.c,v 1.16 2007-05-02 20:57:15 geuzaine Exp $ */
+/* $Id: gl2psTestSimple.c,v 1.17 2009-09-30 21:50:19 geuzaine Exp $ */
 /*
  * GL2PS, an OpenGL to PostScript Printing Library
- * Copyright (C) 1999-2007 Christophe Geuzaine <geuz@geuz.org>
+ * Copyright (C) 1999-2009 Christophe Geuzaine <geuz@geuz.org>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of either:
@@ -28,7 +28,9 @@
  * library in the file named "COPYING.GL2PS"; if not, I will be glad
  * to provide one.
  *
- * For the latest info about gl2ps, see http://www.geuz.org/gl2ps/.
+ * For the latest info about gl2ps and a full list of contributors,
+ * see http://www.geuz.org/gl2ps/.
+ *
  * Please report all bugs and problems to <gl2ps@geuz.org>.
  */