diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -187,7 +187,7 @@
       same "printed page" as the copyright notice for easier
       identification within third-party archives.
 
-   Copyright [yyyy] [name of copyright owner]
+   Copyright 2014-2025 Eric Rochester
 
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
diff --git a/betacode.cabal b/betacode.cabal
--- a/betacode.cabal
+++ b/betacode.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                betacode
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code).
 category:            Text
 description:         A codec for beta code (http://en.wikipedia.org/wiki/Beta_Code).
diff --git a/src/Text/BetaCode.hs b/src/Text/BetaCode.hs
--- a/src/Text/BetaCode.hs
+++ b/src/Text/BetaCode.hs
@@ -1,6 +1,19 @@
 {-# LANGUAGE DeriveGeneric     #-}
 {-# LANGUAGE OverloadedStrings #-}
 
+-- Copyright 2014-2025 Eric Rochester
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+--     http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
 
 module Text.BetaCode
     ( betaCode
