diff options
| author | Albert Krewinkel <albert@zeitkraut.de> | 2022-01-01 20:02:31 +0100 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2022-01-02 11:59:22 -0800 |
| commit | b7a44f9d19f547374445bbc0b44e4dfbbca1dca0 (patch) | |
| tree | 5b34affadaabfb5d9ca29c1de0beca5dca941268 /src/Text/Pandoc/Lua | |
| parent | efdba79ad18fcbe33992878b02be25f8e9616b0c (diff) | |
Copyright notices: update for 2022
Diffstat (limited to 'src/Text/Pandoc/Lua')
| -rw-r--r-- | src/Text/Pandoc/Lua/ErrorConversion.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Filter.hs | 4 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Global.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Init.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Marshal/CommonState.hs | 4 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Marshal/Context.hs | 4 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Marshal/PandocError.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Marshal/ReaderOptions.hs | 4 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Marshal/Reference.hs | 4 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Marshal/Sources.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Module/MediaBag.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Module/Pandoc.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Module/System.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Module/Types.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Module/Utils.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Orphans.hs | 4 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Packages.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/PandocLua.hs | 2 | ||||
| -rw-r--r-- | src/Text/Pandoc/Lua/Util.hs | 4 |
19 files changed, 26 insertions, 26 deletions
diff --git a/src/Text/Pandoc/Lua/ErrorConversion.hs b/src/Text/Pandoc/Lua/ErrorConversion.hs index 5cb1bf825..232061514 100644 --- a/src/Text/Pandoc/Lua/ErrorConversion.hs +++ b/src/Text/Pandoc/Lua/ErrorConversion.hs @@ -2,7 +2,7 @@ {-# LANGUAGE LambdaCase #-} {- | Module : Text.Pandoc.Lua.ErrorConversion - Copyright : © 2020-2021 Albert Krewinkel + Copyright : © 2020-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Filter.hs b/src/Text/Pandoc/Lua/Filter.hs index 9910424d8..9796c4baa 100644 --- a/src/Text/Pandoc/Lua/Filter.hs +++ b/src/Text/Pandoc/Lua/Filter.hs @@ -4,8 +4,8 @@ {-# LANGUAGE ScopedTypeVariables #-} {- | Module : Text.Pandoc.Lua.Filter -Copyright : © 2012-2021 John MacFarlane, - © 2017-2021 Albert Krewinkel +Copyright : © 2012-2022 John MacFarlane, + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> Stability : alpha diff --git a/src/Text/Pandoc/Lua/Global.hs b/src/Text/Pandoc/Lua/Global.hs index 951204d6b..938cc84b7 100644 --- a/src/Text/Pandoc/Lua/Global.hs +++ b/src/Text/Pandoc/Lua/Global.hs @@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} {- | Module : Text.Pandoc.Lua - Copyright : Copyright © 2017-2021 Albert Krewinkel + Copyright : Copyright © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Init.hs b/src/Text/Pandoc/Lua/Init.hs index 835da1fc9..9e126f214 100644 --- a/src/Text/Pandoc/Lua/Init.hs +++ b/src/Text/Pandoc/Lua/Init.hs @@ -2,7 +2,7 @@ {-# LANGUAGE OverloadedStrings #-} {- | Module : Text.Pandoc.Lua - Copyright : Copyright © 2017-2021 Albert Krewinkel + Copyright : Copyright © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Marshal/CommonState.hs b/src/Text/Pandoc/Lua/Marshal/CommonState.hs index a8c0e28d2..7ca1b7e62 100644 --- a/src/Text/Pandoc/Lua/Marshal/CommonState.hs +++ b/src/Text/Pandoc/Lua/Marshal/CommonState.hs @@ -1,8 +1,8 @@ {-# LANGUAGE OverloadedStrings #-} {- | Module : Text.Pandoc.Lua.Marshal.CommonState - Copyright : © 2012-2021 John MacFarlane - © 2017-2021 Albert Krewinkel + Copyright : © 2012-2022 John MacFarlane + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> Stability : alpha diff --git a/src/Text/Pandoc/Lua/Marshal/Context.hs b/src/Text/Pandoc/Lua/Marshal/Context.hs index 17af936e1..126f3a82d 100644 --- a/src/Text/Pandoc/Lua/Marshal/Context.hs +++ b/src/Text/Pandoc/Lua/Marshal/Context.hs @@ -1,8 +1,8 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {- | Module : Text.Pandoc.Lua.Marshaling.Context - Copyright : © 2012-2021 John MacFarlane - © 2017-2021 Albert Krewinkel + Copyright : © 2012-2022 John MacFarlane + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Marshal/PandocError.hs b/src/Text/Pandoc/Lua/Marshal/PandocError.hs index d1c0ad4f4..934c69ec3 100644 --- a/src/Text/Pandoc/Lua/Marshal/PandocError.hs +++ b/src/Text/Pandoc/Lua/Marshal/PandocError.hs @@ -4,7 +4,7 @@ {-# LANGUAGE TypeApplications #-} {- | Module : Text.Pandoc.Lua.Marshal.PandocError - Copyright : © 2020-2021 Albert Krewinkel + Copyright : © 2020-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Marshal/ReaderOptions.hs b/src/Text/Pandoc/Lua/Marshal/ReaderOptions.hs index 5da42fd9e..51bd38356 100644 --- a/src/Text/Pandoc/Lua/Marshal/ReaderOptions.hs +++ b/src/Text/Pandoc/Lua/Marshal/ReaderOptions.hs @@ -4,8 +4,8 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {- | Module : Text.Pandoc.Lua.Marshaling.ReaderOptions - Copyright : © 2012-2021 John MacFarlane - © 2017-2021 Albert Krewinkel + Copyright : © 2012-2022 John MacFarlane + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Marshal/Reference.hs b/src/Text/Pandoc/Lua/Marshal/Reference.hs index ee297484e..d7b9fdf5c 100644 --- a/src/Text/Pandoc/Lua/Marshal/Reference.hs +++ b/src/Text/Pandoc/Lua/Marshal/Reference.hs @@ -4,8 +4,8 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {- | Module : Text.Pandoc.Lua.Marshaling.ReaderOptions - Copyright : © 2012-2021 John MacFarlane - © 2017-2021 Albert Krewinkel + Copyright : © 2012-2022 John MacFarlane + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Marshal/Sources.hs b/src/Text/Pandoc/Lua/Marshal/Sources.hs index 7b5262ab5..b65b605dd 100644 --- a/src/Text/Pandoc/Lua/Marshal/Sources.hs +++ b/src/Text/Pandoc/Lua/Marshal/Sources.hs @@ -2,7 +2,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {- | Module : Text.Pandoc.Lua.Marshaling.Sources -Copyright : © 2021 Albert Krewinkel +Copyright : © 2021-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Module/MediaBag.hs b/src/Text/Pandoc/Lua/Module/MediaBag.hs index fb055101e..51d813517 100644 --- a/src/Text/Pandoc/Lua/Module/MediaBag.hs +++ b/src/Text/Pandoc/Lua/Module/MediaBag.hs @@ -2,7 +2,7 @@ {-# LANGUAGE OverloadedStrings #-} {- | Module : Text.Pandoc.Lua.Module.MediaBag - Copyright : Copyright © 2017-2021 Albert Krewinkel + Copyright : Copyright © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Module/Pandoc.hs b/src/Text/Pandoc/Lua/Module/Pandoc.hs index c2f1f68fd..350934b80 100644 --- a/src/Text/Pandoc/Lua/Module/Pandoc.hs +++ b/src/Text/Pandoc/Lua/Module/Pandoc.hs @@ -5,7 +5,7 @@ {-# LANGUAGE TypeApplications #-} {- | Module : Text.Pandoc.Lua.Module.Pandoc - Copyright : Copyright © 2017-2021 Albert Krewinkel + Copyright : Copyright © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Module/System.hs b/src/Text/Pandoc/Lua/Module/System.hs index e329a0125..fc0e2303f 100644 --- a/src/Text/Pandoc/Lua/Module/System.hs +++ b/src/Text/Pandoc/Lua/Module/System.hs @@ -2,7 +2,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {- | Module : Text.Pandoc.Lua.Module.System - Copyright : © 2019-2021 Albert Krewinkel + Copyright : © 2019-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Module/Types.hs b/src/Text/Pandoc/Lua/Module/Types.hs index f16737f63..b8d45d93e 100644 --- a/src/Text/Pandoc/Lua/Module/Types.hs +++ b/src/Text/Pandoc/Lua/Module/Types.hs @@ -1,7 +1,7 @@ {-# LANGUAGE OverloadedStrings #-} {- | Module : Text.Pandoc.Lua.Module.Types - Copyright : © 2019-2021 Albert Krewinkel + Copyright : © 2019-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Module/Utils.hs b/src/Text/Pandoc/Lua/Module/Utils.hs index 02307cf7a..0c3969e13 100644 --- a/src/Text/Pandoc/Lua/Module/Utils.hs +++ b/src/Text/Pandoc/Lua/Module/Utils.hs @@ -4,7 +4,7 @@ {-# LANGUAGE TypeApplications #-} {- | Module : Text.Pandoc.Lua.Module.Utils - Copyright : Copyright © 2017-2021 Albert Krewinkel + Copyright : Copyright © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Orphans.hs b/src/Text/Pandoc/Lua/Orphans.hs index d5b8f2c5d..c8a83fea4 100644 --- a/src/Text/Pandoc/Lua/Orphans.hs +++ b/src/Text/Pandoc/Lua/Orphans.hs @@ -2,8 +2,8 @@ {-# LANGUAGE FlexibleInstances #-} {- | Module : Text.Pandoc.Lua.Orphans - Copyright : © 2012-2021 John MacFarlane - © 2017-2021 Albert Krewinkel + Copyright : © 2012-2022 John MacFarlane + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Packages.hs b/src/Text/Pandoc/Lua/Packages.hs index c36c3c670..3e4a6d650 100644 --- a/src/Text/Pandoc/Lua/Packages.hs +++ b/src/Text/Pandoc/Lua/Packages.hs @@ -3,7 +3,7 @@ {-# LANGUAGE TypeApplications #-} {- | Module : Text.Pandoc.Lua.Packages - Copyright : Copyright © 2017-2021 Albert Krewinkel + Copyright : Copyright © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/PandocLua.hs b/src/Text/Pandoc/Lua/PandocLua.hs index 71fdf8d5c..bc5085fdb 100644 --- a/src/Text/Pandoc/Lua/PandocLua.hs +++ b/src/Text/Pandoc/Lua/PandocLua.hs @@ -9,7 +9,7 @@ {-# OPTIONS_GHC -fno-warn-orphans #-} {- | Module : Text.Pandoc.Lua.PandocLua - Copyright : Copyright © 2020-2021 Albert Krewinkel + Copyright : Copyright © 2020-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> diff --git a/src/Text/Pandoc/Lua/Util.hs b/src/Text/Pandoc/Lua/Util.hs index c663efb6f..324a1a8e8 100644 --- a/src/Text/Pandoc/Lua/Util.hs +++ b/src/Text/Pandoc/Lua/Util.hs @@ -1,8 +1,8 @@ {-# LANGUAGE OverloadedStrings #-} {- | Module : Text.Pandoc.Lua.Util - Copyright : © 2012-2021 John MacFarlane, - © 2017-2021 Albert Krewinkel + Copyright : © 2012-2022 John MacFarlane, + © 2017-2022 Albert Krewinkel License : GNU GPL, version 2 or above Maintainer : Albert Krewinkel <tarleb+pandoc@moltkeplatz.de> |
