From e411f3e2872465f37eb53b6de4542010a105b53a Mon Sep 17 00:00:00 2001 From: dmjio Date: Fri, 13 Dec 2024 17:46:39 -0600 Subject: [PATCH] Update copyright year, maintainer. --- CODE_OF_CONDUCT.md | 2 +- examples/haskell-miso.org/haskell-miso.cabal | 4 ++-- examples/miso-examples.cabal | 6 +++--- examples/sse/sse.cabal | 4 ++-- jsstring-src/Miso/String.hs | 4 ++-- miso.cabal | 6 +++--- src/Miso.hs | 4 ++-- src/Miso/Concurrent.hs | 4 ++-- src/Miso/Delegate.hs | 4 ++-- src/Miso/Dev.hs | 4 ++-- src/Miso/Diff.hs | 4 ++-- src/Miso/Effect.hs | 4 ++-- src/Miso/Effect/DOM.hs | 4 ++-- src/Miso/Effect/Storage.hs | 4 ++-- src/Miso/Event.hs | 4 ++-- src/Miso/Event/Decoder.hs | 4 ++-- src/Miso/Event/Types.hs | 4 ++-- src/Miso/FFI.hs | 4 ++-- src/Miso/FFI/History.hs | 4 ++-- src/Miso/FFI/SSE.hs | 4 ++-- src/Miso/FFI/Storage.hs | 4 ++-- src/Miso/FFI/WebSocket.hs | 4 ++-- src/Miso/Html.hs | 4 ++-- src/Miso/Html/Element.hs | 4 ++-- src/Miso/Html/Event.hs | 4 ++-- src/Miso/Html/Property.hs | 4 ++-- src/Miso/Mathml.hs | 4 ++-- src/Miso/Mathml/Element.hs | 4 ++-- src/Miso/Router.hs | 4 ++-- src/Miso/Subscription.hs | 4 ++-- src/Miso/Subscription/History.hs | 4 ++-- src/Miso/Subscription/Keyboard.hs | 4 ++-- src/Miso/Subscription/Mouse.hs | 4 ++-- src/Miso/Subscription/SSE.hs | 4 ++-- src/Miso/Subscription/WebSocket.hs | 4 ++-- src/Miso/Subscription/Window.hs | 4 ++-- src/Miso/Svg.hs | 4 ++-- src/Miso/Svg/Attribute.hs | 4 ++-- src/Miso/Svg/Element.hs | 4 ++-- src/Miso/Svg/Event.hs | 4 ++-- src/Miso/Types.hs | 4 ++-- src/Miso/Util.hs | 4 ++-- src/Miso/WebSocket.hs | 4 ++-- text-src/Miso/String.hs | 4 ++-- 44 files changed, 89 insertions(+), 89 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 1871c34f..58758c6c 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -34,7 +34,7 @@ This Code of Conduct applies both within project spaces and in public spaces whe ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at djohnson.m@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at code@dmj.io. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. diff --git a/examples/haskell-miso.org/haskell-miso.cabal b/examples/haskell-miso.org/haskell-miso.cabal index b3e0a077..3415b392 100644 --- a/examples/haskell-miso.org/haskell-miso.cabal +++ b/examples/haskell-miso.org/haskell-miso.cabal @@ -6,8 +6,8 @@ homepage: https://haskell-miso.org license: BSD3 license-file: LICENSE author: David Johnson -maintainer: djohnson.m@gmail.com -copyright: David Johnson (c) 2017-2018 +maintainer: code@dmj.io +copyright: David Johnson (c) 2016-2025 category: Web build-type: Simple extra-source-files: ChangeLog.md diff --git a/examples/miso-examples.cabal b/examples/miso-examples.cabal index 45c450fa..30cf21d6 100644 --- a/examples/miso-examples.cabal +++ b/examples/miso-examples.cabal @@ -1,10 +1,10 @@ name: miso-examples version: 1.8.5.0 category: Web, Miso, Data Structures -author: David M. Johnson -maintainer: David M. Johnson +author: David M. Johnson +maintainer: David M. Johnson homepage: http://github.com/dmjio/miso -copyright: Copyright (c) 2017-2020 David M. Johnson +copyright: Copyright (c) 2016-2025 David M. Johnson bug-reports: https://github.com/dmjio/miso/issues build-type: Simple cabal-version: 1.22 diff --git a/examples/sse/sse.cabal b/examples/sse/sse.cabal index 6275190c..ed5e516d 100644 --- a/examples/sse/sse.cabal +++ b/examples/sse/sse.cabal @@ -5,8 +5,8 @@ homepage: https://sse.haskell-miso.org license: BSD3 license-file: LICENSE author: David Johnson -maintainer: djohnson.m@gmail.com -copyright: David Johnson (c) 2017-2018 +maintainer: code@dmj.io +copyright: David Johnson (c) 2016-2025 category: Web build-type: Simple cabal-version: >=1.10 diff --git a/jsstring-src/Miso/String.hs b/jsstring-src/Miso/String.hs index 7a313dda..baa13d24 100644 --- a/jsstring-src/Miso/String.hs +++ b/jsstring-src/Miso/String.hs @@ -8,9 +8,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.String --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/miso.cabal b/miso.cabal index 72a2b25d..0a1bf0ea 100644 --- a/miso.cabal +++ b/miso.cabal @@ -3,10 +3,10 @@ version: 1.8.5.0 category: Web, Miso, Data Structures license: BSD3 license-file: LICENSE -author: David M. Johnson -maintainer: David M. Johnson +author: David M. Johnson +maintainer: David M. Johnson homepage: http://github.com/dmjio/miso -copyright: Copyright (c) 2017-2020 David M. Johnson +copyright: Copyright (c) 2016-2025 David M. Johnson bug-reports: https://github.com/dmjio/miso/issues build-type: Simple extra-source-files: README.md diff --git a/src/Miso.hs b/src/Miso.hs index dab1d1a0..60dceb4c 100644 --- a/src/Miso.hs +++ b/src/Miso.hs @@ -13,9 +13,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Concurrent.hs b/src/Miso/Concurrent.hs index 0b8d9966..8f595599 100644 --- a/src/Miso/Concurrent.hs +++ b/src/Miso/Concurrent.hs @@ -2,9 +2,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Concurrent --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Delegate.hs b/src/Miso/Delegate.hs index 61fbe8f7..f236a1f6 100644 --- a/src/Miso/Delegate.hs +++ b/src/Miso/Delegate.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Delegate --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Dev.hs b/src/Miso/Dev.hs index b300e842..a2d094a8 100644 --- a/src/Miso/Dev.hs +++ b/src/Miso/Dev.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Dev --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Diff.hs b/src/Miso/Diff.hs index 5470a3ae..ecfb7493 100644 --- a/src/Miso/Diff.hs +++ b/src/Miso/Diff.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Diff --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Effect.hs b/src/Miso/Effect.hs index 514a4788..350f37e8 100644 --- a/src/Miso/Effect.hs +++ b/src/Miso/Effect.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Effect --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Effect/DOM.hs b/src/Miso/Effect/DOM.hs index c3598dfa..f542f52f 100644 --- a/src/Miso/Effect/DOM.hs +++ b/src/Miso/Effect/DOM.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Effect.DOM --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Effect/Storage.hs b/src/Miso/Effect/Storage.hs index 7349020f..d2c88a58 100644 --- a/src/Miso/Effect/Storage.hs +++ b/src/Miso/Effect/Storage.hs @@ -5,9 +5,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Effect.Storage --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Event.hs b/src/Miso/Event.hs index 483106dd..cb3d383b 100644 --- a/src/Miso/Event.hs +++ b/src/Miso/Event.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Event --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Event/Decoder.hs b/src/Miso/Event/Decoder.hs index 379b97e2..d90412df 100644 --- a/src/Miso/Event/Decoder.hs +++ b/src/Miso/Event/Decoder.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Event.Decoder --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Event/Types.hs b/src/Miso/Event/Types.hs index 8f2475d1..a764038d 100644 --- a/src/Miso/Event/Types.hs +++ b/src/Miso/Event/Types.hs @@ -4,9 +4,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Event.Types --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/FFI.hs b/src/Miso/FFI.hs index e703d68b..49dd2b31 100644 --- a/src/Miso/FFI.hs +++ b/src/Miso/FFI.hs @@ -5,9 +5,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.FFI --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/FFI/History.hs b/src/Miso/FFI/History.hs index a949707e..2bba43a7 100644 --- a/src/Miso/FFI/History.hs +++ b/src/Miso/FFI/History.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.FFI.History --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/FFI/SSE.hs b/src/Miso/FFI/SSE.hs index 74a9e8ed..4abf5bdc 100644 --- a/src/Miso/FFI/SSE.hs +++ b/src/Miso/FFI/SSE.hs @@ -5,9 +5,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.FFI.SSE --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/FFI/Storage.hs b/src/Miso/FFI/Storage.hs index 5b5a1a4a..4df91c8f 100644 --- a/src/Miso/FFI/Storage.hs +++ b/src/Miso/FFI/Storage.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.FFI.Storage --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/FFI/WebSocket.hs b/src/Miso/FFI/WebSocket.hs index f7e34118..d32f2977 100644 --- a/src/Miso/FFI/WebSocket.hs +++ b/src/Miso/FFI/WebSocket.hs @@ -5,9 +5,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.FFI.WebSocket --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Html.hs b/src/Miso/Html.hs index 7e70a122..be2837ce 100644 --- a/src/Miso/Html.hs +++ b/src/Miso/Html.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Html --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Html/Element.hs b/src/Miso/Html/Element.hs index 087b88f8..a636fa85 100644 --- a/src/Miso/Html/Element.hs +++ b/src/Miso/Html/Element.hs @@ -2,9 +2,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Html.Element --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Html/Event.hs b/src/Miso/Html/Event.hs index 045c569a..8ff9d32c 100644 --- a/src/Miso/Html/Event.hs +++ b/src/Miso/Html/Event.hs @@ -11,9 +11,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Html.Event --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Html/Property.hs b/src/Miso/Html/Property.hs index 92e9473c..f61c6844 100644 --- a/src/Miso/Html/Property.hs +++ b/src/Miso/Html/Property.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Html.Property --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Mathml.hs b/src/Miso/Mathml.hs index 3697d24d..8157d454 100644 --- a/src/Miso/Mathml.hs +++ b/src/Miso/Mathml.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Mathml --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Mathml/Element.hs b/src/Miso/Mathml/Element.hs index fa7d57a6..85bc8006 100644 --- a/src/Miso/Mathml/Element.hs +++ b/src/Miso/Mathml/Element.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Mathml.Element --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Router.hs b/src/Miso/Router.hs index e3ec4b85..30fccd1d 100644 --- a/src/Miso/Router.hs +++ b/src/Miso/Router.hs @@ -16,9 +16,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Router --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription.hs b/src/Miso/Subscription.hs index 81d7d22a..38750aed 100644 --- a/src/Miso/Subscription.hs +++ b/src/Miso/Subscription.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription/History.hs b/src/Miso/Subscription/History.hs index a70697b3..ba6d381d 100644 --- a/src/Miso/Subscription/History.hs +++ b/src/Miso/Subscription/History.hs @@ -6,9 +6,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription.History --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription/Keyboard.hs b/src/Miso/Subscription/Keyboard.hs index 7ab88a3d..6da50c69 100644 --- a/src/Miso/Subscription/Keyboard.hs +++ b/src/Miso/Subscription/Keyboard.hs @@ -5,9 +5,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription.Keyboard --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription/Mouse.hs b/src/Miso/Subscription/Mouse.hs index 215b1379..d35a186b 100644 --- a/src/Miso/Subscription/Mouse.hs +++ b/src/Miso/Subscription/Mouse.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription.Mouse --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription/SSE.hs b/src/Miso/Subscription/SSE.hs index 96fcd77d..7e5d7b0f 100644 --- a/src/Miso/Subscription/SSE.hs +++ b/src/Miso/Subscription/SSE.hs @@ -4,9 +4,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription.SSE --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription/WebSocket.hs b/src/Miso/Subscription/WebSocket.hs index 87b7f4ae..e8b7f831 100644 --- a/src/Miso/Subscription/WebSocket.hs +++ b/src/Miso/Subscription/WebSocket.hs @@ -8,9 +8,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription.WebSocket --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Subscription/Window.hs b/src/Miso/Subscription/Window.hs index 6780d527..66fc2d37 100644 --- a/src/Miso/Subscription/Window.hs +++ b/src/Miso/Subscription/Window.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Subscription.Window --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Svg.hs b/src/Miso/Svg.hs index 8a8e264d..c4b303bd 100644 --- a/src/Miso/Svg.hs +++ b/src/Miso/Svg.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Svg --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Svg/Attribute.hs b/src/Miso/Svg/Attribute.hs index 4beb0f3b..52bebce0 100644 --- a/src/Miso/Svg/Attribute.hs +++ b/src/Miso/Svg/Attribute.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Svg.Attribute --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable -- diff --git a/src/Miso/Svg/Element.hs b/src/Miso/Svg/Element.hs index 234376fa..d8d64b53 100644 --- a/src/Miso/Svg/Element.hs +++ b/src/Miso/Svg/Element.hs @@ -3,9 +3,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Svg.Element --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Svg/Event.hs b/src/Miso/Svg/Event.hs index 1bbd3bc6..cc4be01f 100644 --- a/src/Miso/Svg/Event.hs +++ b/src/Miso/Svg/Event.hs @@ -6,9 +6,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Svg.Events --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Types.hs b/src/Miso/Types.hs index 26c47b89..ed8be74a 100644 --- a/src/Miso/Types.hs +++ b/src/Miso/Types.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Types --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/Util.hs b/src/Miso/Util.hs index f931c6de..9da189b5 100644 --- a/src/Miso/Util.hs +++ b/src/Miso/Util.hs @@ -1,9 +1,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.Util --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/src/Miso/WebSocket.hs b/src/Miso/WebSocket.hs index fe58f60d..dcb1fdda 100644 --- a/src/Miso/WebSocket.hs +++ b/src/Miso/WebSocket.hs @@ -8,9 +8,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.WebSocket --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ---------------------------------------------------------------------------- diff --git a/text-src/Miso/String.hs b/text-src/Miso/String.hs index c541270d..397921a8 100644 --- a/text-src/Miso/String.hs +++ b/text-src/Miso/String.hs @@ -5,9 +5,9 @@ ----------------------------------------------------------------------------- -- | -- Module : Miso.String --- Copyright : (C) 2016-2018 David M. Johnson +-- Copyright : (C) 2016-2025 David M. Johnson -- License : BSD3-style (see the file LICENSE) --- Maintainer : David M. Johnson +-- Maintainer : David M. Johnson -- Stability : experimental -- Portability : non-portable ----------------------------------------------------------------------------