diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+2.7.0.13
+--------
+* Relaxed upper version bound for `OpenGLRaw`.
+
 2.7.0.12
 --------
 * Mac OS X: Make it possible to link against freeglut.
diff --git a/GLUT.cabal b/GLUT.cabal
--- a/GLUT.cabal
+++ b/GLUT.cabal
@@ -1,5 +1,5 @@
 name: GLUT
-version: 2.7.0.12
+version: 2.7.0.13
 synopsis: A binding for the OpenGL Utility Toolkit
 description:
   A Haskell binding for the OpenGL Utility Toolkit, a window system independent
@@ -8,7 +8,7 @@
   <http://www.opengl.org/resources/libraries/glut/>.
 homepage: http://www.haskell.org/haskellwiki/Opengl
 bug-reports: https://github.com/haskell-opengl/GLUT/issues
-copyright: Copyright (C) 2002-2016 Sven Panne
+copyright: Copyright (C) 2002-2018 Sven Panne
 license: BSD3
 license-file: LICENSE
 author: Sven Panne
@@ -23,8 +23,9 @@
   GHC == 7.8.4
   GHC == 7.10.3
   GHC == 8.0.2
-  GHC == 8.2.1
-  GHC == 8.3
+  GHC == 8.2.2
+  GHC == 8.4.1
+  GHC == 8.5.*
 cabal-version: >= 1.10
 extra-source-files:
    CHANGELOG.md
@@ -236,7 +237,7 @@
   if !flag(BuildExamples)
     buildable: False
   main-is: SmoothOpenGL3.hs
-  build-depends: base >= 3 && < 5, bytestring >= 0.9 && < 0.11, OpenGLRaw >= 1.0 && < 3.3, GLUT
+  build-depends: base >= 3 && < 5, bytestring >= 0.9 && < 0.11, OpenGLRaw >= 1.0 && < 3.4, GLUT
   hs-source-dirs: examples/Misc
   default-language: Haskell2010
   ghc-options: -Wall
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2002-2005, Sven Panne
+Copyright (c) 2002-2018, Sven Panne
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff --git a/cbits/HsGLUT.c b/cbits/HsGLUT.c
--- a/cbits/HsGLUT.c
+++ b/cbits/HsGLUT.c
@@ -1,7 +1,7 @@
 /* -----------------------------------------------------------------------------
  *
  * Module      :  C support for Graphics.UI.GLUT.Raw
- * Copyright   :  (c) Sven Panne 2002-2016
+ * Copyright   :  (c) Sven Panne 2002-2018
  * License     :  BSD3
  *
  * Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/examples/BOGLGP/Chapter01/OnYourOwn1.hs b/examples/BOGLGP/Chapter01/OnYourOwn1.hs
--- a/examples/BOGLGP/Chapter01/OnYourOwn1.hs
+++ b/examples/BOGLGP/Chapter01/OnYourOwn1.hs
@@ -1,6 +1,6 @@
 {-
    OnYourOwn1.hs (adapted from Simple.cpp which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter01/Simple.hs b/examples/BOGLGP/Chapter01/Simple.hs
--- a/examples/BOGLGP/Chapter01/Simple.hs
+++ b/examples/BOGLGP/Chapter01/Simple.hs
@@ -1,6 +1,6 @@
 {-
    Simple.hs (adapted from Simple.cpp which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter02/OnYourOwn1.hs b/examples/BOGLGP/Chapter02/OnYourOwn1.hs
--- a/examples/BOGLGP/Chapter02/OnYourOwn1.hs
+++ b/examples/BOGLGP/Chapter02/OnYourOwn1.hs
@@ -1,6 +1,6 @@
 {-
    OnYourOwn1.hs (adapted from OpenGLApplication which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter02/OpenGLApplication.hs b/examples/BOGLGP/Chapter02/OpenGLApplication.hs
--- a/examples/BOGLGP/Chapter02/OpenGLApplication.hs
+++ b/examples/BOGLGP/Chapter02/OpenGLApplication.hs
@@ -1,6 +1,6 @@
 {-
    OpenGLApplication.hs (adapted from OpenGLApplication which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter03/Lines.hs b/examples/BOGLGP/Chapter03/Lines.hs
--- a/examples/BOGLGP/Chapter03/Lines.hs
+++ b/examples/BOGLGP/Chapter03/Lines.hs
@@ -1,6 +1,6 @@
 {-
    Lines.hs (adapted from Lines which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter03/OnYourOwn1.hs b/examples/BOGLGP/Chapter03/OnYourOwn1.hs
--- a/examples/BOGLGP/Chapter03/OnYourOwn1.hs
+++ b/examples/BOGLGP/Chapter03/OnYourOwn1.hs
@@ -1,6 +1,6 @@
 {-
    OnYourOwn1.hs (adapted from OnYourOwn1 which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter03/Points.hs b/examples/BOGLGP/Chapter03/Points.hs
--- a/examples/BOGLGP/Chapter03/Points.hs
+++ b/examples/BOGLGP/Chapter03/Points.hs
@@ -1,6 +1,6 @@
 {-
    Points.hs (adapted from Points which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter03/Polygons.hs b/examples/BOGLGP/Chapter03/Polygons.hs
--- a/examples/BOGLGP/Chapter03/Polygons.hs
+++ b/examples/BOGLGP/Chapter03/Polygons.hs
@@ -1,6 +1,6 @@
 {-
    Polygons.hs (adapted from Polygons which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/BOGLGP/Chapter03/TrianglesQuads.hs b/examples/BOGLGP/Chapter03/TrianglesQuads.hs
--- a/examples/BOGLGP/Chapter03/TrianglesQuads.hs
+++ b/examples/BOGLGP/Chapter03/TrianglesQuads.hs
@@ -1,6 +1,6 @@
 {-
    TrianglesQuads.hs (adapted from TrianglesQuads which is (c) 2004 Astle/Hawkins)
-   Copyright (c) Sven Panne 2004-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2004-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/Misc/ARBOcclude.hs b/examples/Misc/ARBOcclude.hs
--- a/examples/Misc/ARBOcclude.hs
+++ b/examples/Misc/ARBOcclude.hs
@@ -1,6 +1,6 @@
 {-
    ARBOcclude.hs (adapted from arbocclude.c which is (c) Brian Paul)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/Misc/ColorTriangle/ColorTriangle.hs b/examples/Misc/ColorTriangle/ColorTriangle.hs
--- a/examples/Misc/ColorTriangle/ColorTriangle.hs
+++ b/examples/Misc/ColorTriangle/ColorTriangle.hs
@@ -1,7 +1,7 @@
 {-
    ColorTriangle.hs (adapted from triangles.cpp which is (c) The Red Book
    Authors.)
-   Copyright (c) Sven Panne 2014 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file GLUT/LICENSE
 
diff --git a/examples/Misc/ExtractContours.hs b/examples/Misc/ExtractContours.hs
--- a/examples/Misc/ExtractContours.hs
+++ b/examples/Misc/ExtractContours.hs
@@ -1,6 +1,6 @@
 {-
    ExtractContours.hs (adapted from tess.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/Misc/Pitfall14.hs b/examples/Misc/Pitfall14.hs
--- a/examples/Misc/Pitfall14.hs
+++ b/examples/Misc/Pitfall14.hs
@@ -1,6 +1,6 @@
 {-
    Pitfall14
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/Misc/SmoothOpenGL3.hs b/examples/Misc/SmoothOpenGL3.hs
--- a/examples/Misc/SmoothOpenGL3.hs
+++ b/examples/Misc/SmoothOpenGL3.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE CPP #-}
 {-
    SmoothOpenGL3.hs (adapted from freeglut's smooth_opengl3.c example)
-   Copyright (c) Sven Panne 2009 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file LICENSE
 -}
diff --git a/examples/Misc/Triangulate.hs b/examples/Misc/Triangulate.hs
--- a/examples/Misc/Triangulate.hs
+++ b/examples/Misc/Triangulate.hs
@@ -1,6 +1,6 @@
 {-
    Triangulate.hs (adapted from tess.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/OrangeBook/ogl2brick/Brick.hs b/examples/OrangeBook/ogl2brick/Brick.hs
--- a/examples/OrangeBook/ogl2brick/Brick.hs
+++ b/examples/OrangeBook/ogl2brick/Brick.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE CPP #-}
 {-
    Brick.hs (adapted from ogl2brick.c which is (c) 3Dlabs Inc. Ltd.)
-   Copyright (c) Sven Panne 2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/RedBook4/AAIndex.hs b/examples/RedBook4/AAIndex.hs
--- a/examples/RedBook4/AAIndex.hs
+++ b/examples/RedBook4/AAIndex.hs
@@ -1,6 +1,6 @@
 {-
    AAIndex.hs (adapted from aaindex.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/AARGB.hs b/examples/RedBook4/AARGB.hs
--- a/examples/RedBook4/AARGB.hs
+++ b/examples/RedBook4/AARGB.hs
@@ -1,6 +1,6 @@
 {-
    AARGB.hs (adapted from aargb.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/AccAnti.hs b/examples/RedBook4/AccAnti.hs
--- a/examples/RedBook4/AccAnti.hs
+++ b/examples/RedBook4/AccAnti.hs
@@ -1,6 +1,6 @@
 {-
    AccAnti.hs (adapted from accanti.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/AccPersp.hs b/examples/RedBook4/AccPersp.hs
--- a/examples/RedBook4/AccPersp.hs
+++ b/examples/RedBook4/AccPersp.hs
@@ -1,6 +1,6 @@
 {-
    AccPersp.hs (adapted from accpersp.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Alpha.hs b/examples/RedBook4/Alpha.hs
--- a/examples/RedBook4/Alpha.hs
+++ b/examples/RedBook4/Alpha.hs
@@ -1,6 +1,6 @@
 {-
    Alpha.hs (adapted from alpha.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Alpha3D.hs b/examples/RedBook4/Alpha3D.hs
--- a/examples/RedBook4/Alpha3D.hs
+++ b/examples/RedBook4/Alpha3D.hs
@@ -1,6 +1,6 @@
 {-
    Alpha3D.hs (adapted from alpha3D.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/BezCurve.hs b/examples/RedBook4/BezCurve.hs
--- a/examples/RedBook4/BezCurve.hs
+++ b/examples/RedBook4/BezCurve.hs
@@ -1,6 +1,6 @@
 {-
    BezCurve.hs (adapted from bezcurve.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/BezMesh.hs b/examples/RedBook4/BezMesh.hs
--- a/examples/RedBook4/BezMesh.hs
+++ b/examples/RedBook4/BezMesh.hs
@@ -1,6 +1,6 @@
 {-
    BezMesh.hs (adapted from bezmesh.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/BezSurf.hs b/examples/RedBook4/BezSurf.hs
--- a/examples/RedBook4/BezSurf.hs
+++ b/examples/RedBook4/BezSurf.hs
@@ -1,6 +1,6 @@
 {-
    BezSurf.hs (adapted from bezsurf.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/BlendEqn.hs b/examples/RedBook4/BlendEqn.hs
--- a/examples/RedBook4/BlendEqn.hs
+++ b/examples/RedBook4/BlendEqn.hs
@@ -1,6 +1,6 @@
 {-
    BlendEqn.hs (adapted from blendeqn.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Checker.hs b/examples/RedBook4/Checker.hs
--- a/examples/RedBook4/Checker.hs
+++ b/examples/RedBook4/Checker.hs
@@ -1,6 +1,6 @@
 {-
    Checker.hs  (adapted from checker.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Clip.hs b/examples/RedBook4/Clip.hs
--- a/examples/RedBook4/Clip.hs
+++ b/examples/RedBook4/Clip.hs
@@ -1,6 +1,6 @@
 {-
    Clip.hs (adapted from clip.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/ColorMat.hs b/examples/RedBook4/ColorMat.hs
--- a/examples/RedBook4/ColorMat.hs
+++ b/examples/RedBook4/ColorMat.hs
@@ -1,6 +1,6 @@
 {-
    Light.hs (adapted from light.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/ColorMatrix.hs b/examples/RedBook4/ColorMatrix.hs
--- a/examples/RedBook4/ColorMatrix.hs
+++ b/examples/RedBook4/ColorMatrix.hs
@@ -1,6 +1,6 @@
 {-
    ColorMatrix.hs (adapted from colormatrix.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/ColorTable.hs b/examples/RedBook4/ColorTable.hs
--- a/examples/RedBook4/ColorTable.hs
+++ b/examples/RedBook4/ColorTable.hs
@@ -1,6 +1,6 @@
 {-
    ColorTable.hs (adapted from colortable.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Combiner.hs b/examples/RedBook4/Combiner.hs
--- a/examples/RedBook4/Combiner.hs
+++ b/examples/RedBook4/Combiner.hs
@@ -1,6 +1,6 @@
 {-
    Combiner.hs  (adapted from combiner.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Convolution.hs b/examples/RedBook4/Convolution.hs
--- a/examples/RedBook4/Convolution.hs
+++ b/examples/RedBook4/Convolution.hs
@@ -1,6 +1,6 @@
 {-
    Convolution.hs (adapted from convolution.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Cube.hs b/examples/RedBook4/Cube.hs
--- a/examples/RedBook4/Cube.hs
+++ b/examples/RedBook4/Cube.hs
@@ -1,6 +1,6 @@
 {-
    Cube.hs (adapted from cube.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/CubeMap.hs b/examples/RedBook4/CubeMap.hs
--- a/examples/RedBook4/CubeMap.hs
+++ b/examples/RedBook4/CubeMap.hs
@@ -1,6 +1,6 @@
 {-
    CubeMap.hs  (adapted from CubeMap.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/DList.hs b/examples/RedBook4/DList.hs
--- a/examples/RedBook4/DList.hs
+++ b/examples/RedBook4/DList.hs
@@ -1,6 +1,6 @@
 {-
    DList.hs (adapted from list.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/DOF.hs b/examples/RedBook4/DOF.hs
--- a/examples/RedBook4/DOF.hs
+++ b/examples/RedBook4/DOF.hs
@@ -1,6 +1,6 @@
 {-
    DOF.hs (adapted from dof.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Double.hs b/examples/RedBook4/Double.hs
--- a/examples/RedBook4/Double.hs
+++ b/examples/RedBook4/Double.hs
@@ -1,6 +1,6 @@
 {-
    Double.hs (adapted from double.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/DrawF.hs b/examples/RedBook4/DrawF.hs
--- a/examples/RedBook4/DrawF.hs
+++ b/examples/RedBook4/DrawF.hs
@@ -1,6 +1,6 @@
 {-
    DrawF.hs  (adapted from drawf.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Feedback.hs b/examples/RedBook4/Feedback.hs
--- a/examples/RedBook4/Feedback.hs
+++ b/examples/RedBook4/Feedback.hs
@@ -1,6 +1,6 @@
 {-
    Feedback.hs (adapted from feedback.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Fog.hs b/examples/RedBook4/Fog.hs
--- a/examples/RedBook4/Fog.hs
+++ b/examples/RedBook4/Fog.hs
@@ -1,6 +1,6 @@
 {-
    Fog.hs (adapted from fog.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/FogCoord.hs b/examples/RedBook4/FogCoord.hs
--- a/examples/RedBook4/FogCoord.hs
+++ b/examples/RedBook4/FogCoord.hs
@@ -1,6 +1,6 @@
 {-
    FogCoord.hs (adapted from fogcoord.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/FogIndex.hs b/examples/RedBook4/FogIndex.hs
--- a/examples/RedBook4/FogIndex.hs
+++ b/examples/RedBook4/FogIndex.hs
@@ -1,6 +1,6 @@
 {-
    FogIndex.hs (adapted from fogindex.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Font.hs b/examples/RedBook4/Font.hs
--- a/examples/RedBook4/Font.hs
+++ b/examples/RedBook4/Font.hs
@@ -1,6 +1,6 @@
 {-
    Font.hs  (adapted from font.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Hello.hs b/examples/RedBook4/Hello.hs
--- a/examples/RedBook4/Hello.hs
+++ b/examples/RedBook4/Hello.hs
@@ -1,6 +1,6 @@
 {-
    Hello.hs (adapted from hello.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Histogram.hs b/examples/RedBook4/Histogram.hs
--- a/examples/RedBook4/Histogram.hs
+++ b/examples/RedBook4/Histogram.hs
@@ -1,6 +1,6 @@
 {-
    Histogram.hs (adapted from histogram.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Image.hs b/examples/RedBook4/Image.hs
--- a/examples/RedBook4/Image.hs
+++ b/examples/RedBook4/Image.hs
@@ -1,6 +1,6 @@
 {-
    Image.hs  (adapted from image.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Light.hs b/examples/RedBook4/Light.hs
--- a/examples/RedBook4/Light.hs
+++ b/examples/RedBook4/Light.hs
@@ -1,6 +1,6 @@
 {-
    Light.hs (adapted from light.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Lines.hs b/examples/RedBook4/Lines.hs
--- a/examples/RedBook4/Lines.hs
+++ b/examples/RedBook4/Lines.hs
@@ -1,6 +1,6 @@
 {-
    Lines.hs (adapted from lines.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/MVArray.hs b/examples/RedBook4/MVArray.hs
--- a/examples/RedBook4/MVArray.hs
+++ b/examples/RedBook4/MVArray.hs
@@ -1,6 +1,6 @@
 {-
    MVArray.hs (adapted from mvarray.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Material.hs b/examples/RedBook4/Material.hs
--- a/examples/RedBook4/Material.hs
+++ b/examples/RedBook4/Material.hs
@@ -1,6 +1,6 @@
 {-
    Material.hs (adapted from material.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Minmax.hs b/examples/RedBook4/Minmax.hs
--- a/examples/RedBook4/Minmax.hs
+++ b/examples/RedBook4/Minmax.hs
@@ -1,6 +1,6 @@
 {-
    Minmax.hs (adapted from minmax.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Mipmap.hs b/examples/RedBook4/Mipmap.hs
--- a/examples/RedBook4/Mipmap.hs
+++ b/examples/RedBook4/Mipmap.hs
@@ -1,6 +1,6 @@
 {-
    Mipmap.hs  (adapted from mipmap.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Model.hs b/examples/RedBook4/Model.hs
--- a/examples/RedBook4/Model.hs
+++ b/examples/RedBook4/Model.hs
@@ -1,6 +1,6 @@
 {-
    Model.hs (adapted from model.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/MoveLight.hs b/examples/RedBook4/MoveLight.hs
--- a/examples/RedBook4/MoveLight.hs
+++ b/examples/RedBook4/MoveLight.hs
@@ -1,6 +1,6 @@
 {-
    MoveLight.hs (adapted from movelight.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/MultiTex.hs b/examples/RedBook4/MultiTex.hs
--- a/examples/RedBook4/MultiTex.hs
+++ b/examples/RedBook4/MultiTex.hs
@@ -1,6 +1,6 @@
 {-
    MultiTex.hs  (adapted from multitex.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/RedBook4/Multisamp.hs b/examples/RedBook4/Multisamp.hs
--- a/examples/RedBook4/Multisamp.hs
+++ b/examples/RedBook4/Multisamp.hs
@@ -1,6 +1,6 @@
 {-
    Multisamp.hs (adapted from multisamp.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/PickDepth.hs b/examples/RedBook4/PickDepth.hs
--- a/examples/RedBook4/PickDepth.hs
+++ b/examples/RedBook4/PickDepth.hs
@@ -1,6 +1,6 @@
 {-
    PickDepth.hs (adapted from pickdepth.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/PickSquare.hs b/examples/RedBook4/PickSquare.hs
--- a/examples/RedBook4/PickSquare.hs
+++ b/examples/RedBook4/PickSquare.hs
@@ -1,6 +1,6 @@
 {-
    PickSquare.hs (adapted from picksquare.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Planet.hs b/examples/RedBook4/Planet.hs
--- a/examples/RedBook4/Planet.hs
+++ b/examples/RedBook4/Planet.hs
@@ -1,6 +1,6 @@
 {-
    Planet.hs (adapted from planet.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/PointP.hs b/examples/RedBook4/PointP.hs
--- a/examples/RedBook4/PointP.hs
+++ b/examples/RedBook4/PointP.hs
@@ -1,6 +1,6 @@
 {-
    PointP.hs (adapted from pointp.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/PolyOff.hs b/examples/RedBook4/PolyOff.hs
--- a/examples/RedBook4/PolyOff.hs
+++ b/examples/RedBook4/PolyOff.hs
@@ -1,6 +1,6 @@
 {-
    PolyOff.hs (adapted from polyoff.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Polys.hs b/examples/RedBook4/Polys.hs
--- a/examples/RedBook4/Polys.hs
+++ b/examples/RedBook4/Polys.hs
@@ -1,6 +1,6 @@
 {-
    Polys.hs (adapted from polys.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Quadric.hs b/examples/RedBook4/Quadric.hs
--- a/examples/RedBook4/Quadric.hs
+++ b/examples/RedBook4/Quadric.hs
@@ -1,6 +1,6 @@
 {-
    Quadric.hs (adapted from quadric.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/ReadImage.hs b/examples/RedBook4/ReadImage.hs
--- a/examples/RedBook4/ReadImage.hs
+++ b/examples/RedBook4/ReadImage.hs
@@ -1,6 +1,6 @@
 {-
    ReadImage.hs (adapted from readImage.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Robot.hs b/examples/RedBook4/Robot.hs
--- a/examples/RedBook4/Robot.hs
+++ b/examples/RedBook4/Robot.hs
@@ -1,6 +1,6 @@
 {-
    Robot.hs (adapted from robot.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Scene.hs b/examples/RedBook4/Scene.hs
--- a/examples/RedBook4/Scene.hs
+++ b/examples/RedBook4/Scene.hs
@@ -1,6 +1,6 @@
 {-
    Scene.hs (adapted from scene.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Select.hs b/examples/RedBook4/Select.hs
--- a/examples/RedBook4/Select.hs
+++ b/examples/RedBook4/Select.hs
@@ -1,6 +1,6 @@
 {-
    Select.hs (adapted from select.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/ShadowMap.hs b/examples/RedBook4/ShadowMap.hs
--- a/examples/RedBook4/ShadowMap.hs
+++ b/examples/RedBook4/ShadowMap.hs
@@ -1,6 +1,6 @@
 {-
    ShadowMap.hs (adapted from shadowmap.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 -}
diff --git a/examples/RedBook4/Smooth.hs b/examples/RedBook4/Smooth.hs
--- a/examples/RedBook4/Smooth.hs
+++ b/examples/RedBook4/Smooth.hs
@@ -1,6 +1,6 @@
 {-
    Smooth.hs (adapted from smooth.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Stencil.hs b/examples/RedBook4/Stencil.hs
--- a/examples/RedBook4/Stencil.hs
+++ b/examples/RedBook4/Stencil.hs
@@ -1,6 +1,6 @@
 {-
    Stencil.hs (adapted from stencil.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Stroke.hs b/examples/RedBook4/Stroke.hs
--- a/examples/RedBook4/Stroke.hs
+++ b/examples/RedBook4/Stroke.hs
@@ -1,6 +1,6 @@
 {-
    Stroke.hs (adapted from stroke.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/SurfPoints.hs b/examples/RedBook4/SurfPoints.hs
--- a/examples/RedBook4/SurfPoints.hs
+++ b/examples/RedBook4/SurfPoints.hs
@@ -1,6 +1,6 @@
 {-
    SurfPoints.hs (adapted from surfpoints.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Surface.hs b/examples/RedBook4/Surface.hs
--- a/examples/RedBook4/Surface.hs
+++ b/examples/RedBook4/Surface.hs
@@ -1,6 +1,6 @@
 {-
    Surface.hs (adapted from surface.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Teapots.hs b/examples/RedBook4/Teapots.hs
--- a/examples/RedBook4/Teapots.hs
+++ b/examples/RedBook4/Teapots.hs
@@ -1,6 +1,6 @@
 {-
    Teapots.hs (adapted from teapots.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Tess.hs b/examples/RedBook4/Tess.hs
--- a/examples/RedBook4/Tess.hs
+++ b/examples/RedBook4/Tess.hs
@@ -1,6 +1,6 @@
 {-
    Tess.hs (adapted from tess.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/TessWind.hs b/examples/RedBook4/TessWind.hs
--- a/examples/RedBook4/TessWind.hs
+++ b/examples/RedBook4/TessWind.hs
@@ -1,6 +1,6 @@
 {-
    TessWind.hs (adapted from tesswind.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/TexBind.hs b/examples/RedBook4/TexBind.hs
--- a/examples/RedBook4/TexBind.hs
+++ b/examples/RedBook4/TexBind.hs
@@ -1,6 +1,6 @@
 {-
    TexBind.hs  (adapted from texbind.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/TexGen.hs b/examples/RedBook4/TexGen.hs
--- a/examples/RedBook4/TexGen.hs
+++ b/examples/RedBook4/TexGen.hs
@@ -1,6 +1,6 @@
 {-
    TexGen.hs  (adapted from texgen.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/TexProx.hs b/examples/RedBook4/TexProx.hs
--- a/examples/RedBook4/TexProx.hs
+++ b/examples/RedBook4/TexProx.hs
@@ -1,6 +1,6 @@
 {-
    TexProx.hs (adapted from texprox.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/TexSub.hs b/examples/RedBook4/TexSub.hs
--- a/examples/RedBook4/TexSub.hs
+++ b/examples/RedBook4/TexSub.hs
@@ -1,6 +1,6 @@
 {-
    TexSub.hs  (adapted from texsub.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Texture3D.hs b/examples/RedBook4/Texture3D.hs
--- a/examples/RedBook4/Texture3D.hs
+++ b/examples/RedBook4/Texture3D.hs
@@ -1,6 +1,6 @@
 {-
    Texture3D.hs  (adapted from texture3d.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/TextureSurf.hs b/examples/RedBook4/TextureSurf.hs
--- a/examples/RedBook4/TextureSurf.hs
+++ b/examples/RedBook4/TextureSurf.hs
@@ -1,6 +1,6 @@
 {-
    TextureSurf.hs (adapted from texturesurf.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Torus.hs b/examples/RedBook4/Torus.hs
--- a/examples/RedBook4/Torus.hs
+++ b/examples/RedBook4/Torus.hs
@@ -1,6 +1,6 @@
 {-
    Torus.hs (adapted from torus.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2006 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Trim.hs b/examples/RedBook4/Trim.hs
--- a/examples/RedBook4/Trim.hs
+++ b/examples/RedBook4/Trim.hs
@@ -1,6 +1,6 @@
 {-
    Trim.hs (adapted from trim.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/UnProject.hs b/examples/RedBook4/UnProject.hs
--- a/examples/RedBook4/UnProject.hs
+++ b/examples/RedBook4/UnProject.hs
@@ -1,6 +1,6 @@
 {-
    UnProject.hs (adapted from unproject.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/VArray.hs b/examples/RedBook4/VArray.hs
--- a/examples/RedBook4/VArray.hs
+++ b/examples/RedBook4/VArray.hs
@@ -1,6 +1,6 @@
 {-
    VArray.hs (adapted from varray.c which is (c) Silicon Graphics, Inc.)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook4/Wrap.hs b/examples/RedBook4/Wrap.hs
--- a/examples/RedBook4/Wrap.hs
+++ b/examples/RedBook4/Wrap.hs
@@ -1,6 +1,6 @@
 {-
    Wrap.hs  (adapted from wrap.c which is (c) Silicon Graphics, Inc)
-   Copyright (c) Sven Panne 2002-2005 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2002-2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file libraries/GLUT/LICENSE
 
diff --git a/examples/RedBook8/Chapter01/Triangles.hs b/examples/RedBook8/Chapter01/Triangles.hs
--- a/examples/RedBook8/Chapter01/Triangles.hs
+++ b/examples/RedBook8/Chapter01/Triangles.hs
@@ -1,6 +1,6 @@
 {-
    Triangles.hs (adapted from triangles.cpp which is (c) The Red Book Authors.)
-   Copyright (c) Sven Panne 2014 <svenpanne@gmail.com>
+   Copyright (c) Sven Panne 2018 <svenpanne@gmail.com>
    This file is part of HOpenGL and distributed under a BSD-style license
    See the file GLUT/LICENSE
 
diff --git a/examples/RedBook8/common/LoadShaders.hs b/examples/RedBook8/common/LoadShaders.hs
--- a/examples/RedBook8/common/LoadShaders.hs
+++ b/examples/RedBook8/common/LoadShaders.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  LoadShaders
--- Copyright   :  (c) Sven Panne 2013
+-- Copyright   :  (c) Sven Panne 2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT.hs b/src/Graphics/UI/GLUT.hs
--- a/src/Graphics/UI/GLUT.hs
+++ b/src/Graphics/UI/GLUT.hs
@@ -1,7 +1,7 @@
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Begin.hs b/src/Graphics/UI/GLUT/Begin.hs
--- a/src/Graphics/UI/GLUT/Begin.hs
+++ b/src/Graphics/UI/GLUT/Begin.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Begin
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Callbacks.hs b/src/Graphics/UI/GLUT/Callbacks.hs
--- a/src/Graphics/UI/GLUT/Callbacks.hs
+++ b/src/Graphics/UI/GLUT/Callbacks.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Callbacks
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Callbacks/Global.hs b/src/Graphics/UI/GLUT/Callbacks/Global.hs
--- a/src/Graphics/UI/GLUT/Callbacks/Global.hs
+++ b/src/Graphics/UI/GLUT/Callbacks/Global.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Callbacks.Global
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Callbacks/Registration.hs b/src/Graphics/UI/GLUT/Callbacks/Registration.hs
--- a/src/Graphics/UI/GLUT/Callbacks/Registration.hs
+++ b/src/Graphics/UI/GLUT/Callbacks/Registration.hs
@@ -4,7 +4,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Callbacks.Registration
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Callbacks/Window.hs b/src/Graphics/UI/GLUT/Callbacks/Window.hs
--- a/src/Graphics/UI/GLUT/Callbacks/Window.hs
+++ b/src/Graphics/UI/GLUT/Callbacks/Window.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Callbacks.Window
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Colormap.hs b/src/Graphics/UI/GLUT/Colormap.hs
--- a/src/Graphics/UI/GLUT/Colormap.hs
+++ b/src/Graphics/UI/GLUT/Colormap.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Colormap
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Debugging.hs b/src/Graphics/UI/GLUT/Debugging.hs
--- a/src/Graphics/UI/GLUT/Debugging.hs
+++ b/src/Graphics/UI/GLUT/Debugging.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Debugging
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/DeviceControl.hs b/src/Graphics/UI/GLUT/DeviceControl.hs
--- a/src/Graphics/UI/GLUT/DeviceControl.hs
+++ b/src/Graphics/UI/GLUT/DeviceControl.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.DeviceControl
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Fonts.hs b/src/Graphics/UI/GLUT/Fonts.hs
--- a/src/Graphics/UI/GLUT/Fonts.hs
+++ b/src/Graphics/UI/GLUT/Fonts.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Fonts
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/GameMode.hs b/src/Graphics/UI/GLUT/GameMode.hs
--- a/src/Graphics/UI/GLUT/GameMode.hs
+++ b/src/Graphics/UI/GLUT/GameMode.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.GameMode
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Initialization.hs b/src/Graphics/UI/GLUT/Initialization.hs
--- a/src/Graphics/UI/GLUT/Initialization.hs
+++ b/src/Graphics/UI/GLUT/Initialization.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Initialization
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Menu.hs b/src/Graphics/UI/GLUT/Menu.hs
--- a/src/Graphics/UI/GLUT/Menu.hs
+++ b/src/Graphics/UI/GLUT/Menu.hs
@@ -3,7 +3,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Menu
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Objects.hs b/src/Graphics/UI/GLUT/Objects.hs
--- a/src/Graphics/UI/GLUT/Objects.hs
+++ b/src/Graphics/UI/GLUT/Objects.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Objects
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Overlay.hs b/src/Graphics/UI/GLUT/Overlay.hs
--- a/src/Graphics/UI/GLUT/Overlay.hs
+++ b/src/Graphics/UI/GLUT/Overlay.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Overlay
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/QueryUtils.hs b/src/Graphics/UI/GLUT/QueryUtils.hs
--- a/src/Graphics/UI/GLUT/QueryUtils.hs
+++ b/src/Graphics/UI/GLUT/QueryUtils.hs
@@ -2,7 +2,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.QueryUtils
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Raw.hs b/src/Graphics/UI/GLUT/Raw.hs
--- a/src/Graphics/UI/GLUT/Raw.hs
+++ b/src/Graphics/UI/GLUT/Raw.hs
@@ -2,7 +2,7 @@
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Raw
--- Copyright   :  (c) Sven Panne 2013
+-- Copyright   :  (c) Sven Panne 2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Raw/Callbacks.hs b/src/Graphics/UI/GLUT/Raw/Callbacks.hs
--- a/src/Graphics/UI/GLUT/Raw/Callbacks.hs
+++ b/src/Graphics/UI/GLUT/Raw/Callbacks.hs
@@ -2,7 +2,7 @@
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Raw.Callbacks
--- Copyright   :  (c) Sven Panne 2013
+-- Copyright   :  (c) Sven Panne 2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Raw/Fonts.hs b/src/Graphics/UI/GLUT/Raw/Fonts.hs
--- a/src/Graphics/UI/GLUT/Raw/Fonts.hs
+++ b/src/Graphics/UI/GLUT/Raw/Fonts.hs
@@ -2,7 +2,7 @@
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Raw.Fonts
--- Copyright   :  (c) Sven Panne 2013
+-- Copyright   :  (c) Sven Panne 2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Raw/Functions.hs b/src/Graphics/UI/GLUT/Raw/Functions.hs
--- a/src/Graphics/UI/GLUT/Raw/Functions.hs
+++ b/src/Graphics/UI/GLUT/Raw/Functions.hs
@@ -3,7 +3,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Raw.Functions
--- Copyright   :  (c) Sven Panne 2013
+-- Copyright   :  (c) Sven Panne 2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Raw/Tokens.hs b/src/Graphics/UI/GLUT/Raw/Tokens.hs
--- a/src/Graphics/UI/GLUT/Raw/Tokens.hs
+++ b/src/Graphics/UI/GLUT/Raw/Tokens.hs
@@ -2,7 +2,7 @@
 -----------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Raw.Tokens
--- Copyright   :  (c) Sven Panne 2013
+-- Copyright   :  (c) Sven Panne 2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/State.hs b/src/Graphics/UI/GLUT/State.hs
--- a/src/Graphics/UI/GLUT/State.hs
+++ b/src/Graphics/UI/GLUT/State.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.State
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Types.hs b/src/Graphics/UI/GLUT/Types.hs
--- a/src/Graphics/UI/GLUT/Types.hs
+++ b/src/Graphics/UI/GLUT/Types.hs
@@ -2,7 +2,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Types
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
diff --git a/src/Graphics/UI/GLUT/Window.hs b/src/Graphics/UI/GLUT/Window.hs
--- a/src/Graphics/UI/GLUT/Window.hs
+++ b/src/Graphics/UI/GLUT/Window.hs
@@ -1,7 +1,7 @@
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Graphics.UI.GLUT.Window
--- Copyright   :  (c) Sven Panne 2002-2013
+-- Copyright   :  (c) Sven Panne 2002-2018
 -- License     :  BSD3
 --
 -- Maintainer  :  Sven Panne <svenpanne@gmail.com>
