From f869209ec663dce5a96de83b3c2e3aceb0ddee16 Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Sat, 8 May 2021 12:19:34 -0400 Subject: [PATCH] version 0.16.1 also updated copyright notice --- ChangeLog.md | 2 +- package.yaml | 2 +- src/Mtlstats.hs | 2 +- src/Mtlstats/Actions.hs | 2 +- src/Mtlstats/Actions/EditStandings.hs | 2 +- src/Mtlstats/Actions/NewGame.hs | 2 +- src/Mtlstats/Actions/NewGame/GoalieInput.hs | 2 +- src/Mtlstats/Config.hs | 2 +- src/Mtlstats/Control.hs | 2 +- src/Mtlstats/Control/CreateGoalie.hs | 2 +- src/Mtlstats/Control/CreatePlayer.hs | 2 +- src/Mtlstats/Control/EditGoalie.hs | 2 +- src/Mtlstats/Control/EditPlayer.hs | 2 +- src/Mtlstats/Control/EditStandings.hs | 2 +- src/Mtlstats/Control/NewGame.hs | 2 +- src/Mtlstats/Control/NewGame/GoalieInput.hs | 2 +- src/Mtlstats/Control/TitleScreen.hs | 4 ++-- src/Mtlstats/Format.hs | 2 +- src/Mtlstats/Handlers.hs | 2 +- src/Mtlstats/Helpers/Goalie.hs | 2 +- src/Mtlstats/Helpers/Player.hs | 2 +- src/Mtlstats/Helpers/Position.hs | 2 +- src/Mtlstats/Menu.hs | 2 +- src/Mtlstats/Menu/EditGoalie.hs | 2 +- src/Mtlstats/Menu/EditPlayer.hs | 2 +- src/Mtlstats/Menu/EditStandings.hs | 2 +- src/Mtlstats/Prompt.hs | 2 +- src/Mtlstats/Prompt/EditGoalie.hs | 2 +- src/Mtlstats/Prompt/EditPlayer.hs | 2 +- src/Mtlstats/Prompt/EditStandings.hs | 2 +- src/Mtlstats/Prompt/NewGame.hs | 2 +- src/Mtlstats/Prompt/NewGame/GoalieInput.hs | 2 +- src/Mtlstats/Report.hs | 2 +- src/Mtlstats/Types.hs | 2 +- src/Mtlstats/Types/Menu.hs | 2 +- src/Mtlstats/Util.hs | 2 +- test/Actions/EditStandingsSpec.hs | 2 +- test/Actions/NewGame/GoalieInputSpec.hs | 2 +- test/Actions/NewGameSpec.hs | 2 +- test/ActionsSpec.hs | 2 +- test/FormatSpec.hs | 2 +- test/HandlersSpec.hs | 2 +- test/Helpers/GoalieSpec.hs | 2 +- test/Helpers/PlayerSpec.hs | 2 +- test/Helpers/PositionSpec.hs | 2 +- test/HelpersSpec.hs | 2 +- test/ReportSpec.hs | 2 +- test/Spec.hs | 2 +- test/Types/MenuSpec.hs | 2 +- test/TypesSpec.hs | 2 +- test/UtilSpec.hs | 2 +- 51 files changed, 52 insertions(+), 52 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 54b6ca7..0e5e67c 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ # Changelog for mtlstats -## current +## 0.16.1 - Don't automatically start a new game on new season ## 0.16.0 diff --git a/package.yaml b/package.yaml index 3bad79a..afa1d36 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: mtlstats -version: 0.16.0 +version: 0.16.1 github: "mtlstats/mtlstats" license: GPL-3 author: "Jonathan Lamothe" diff --git a/src/Mtlstats.hs b/src/Mtlstats.hs index 40266c8..eb796cb 100644 --- a/src/Mtlstats.hs +++ b/src/Mtlstats.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Actions.hs b/src/Mtlstats/Actions.hs index a0d4161..ab6b0f6 100644 --- a/src/Mtlstats/Actions.hs +++ b/src/Mtlstats/Actions.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Actions/EditStandings.hs b/src/Mtlstats/Actions/EditStandings.hs index c46f57d..c936609 100644 --- a/src/Mtlstats/Actions/EditStandings.hs +++ b/src/Mtlstats/Actions/EditStandings.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Actions/NewGame.hs b/src/Mtlstats/Actions/NewGame.hs index cf758ad..44d72b1 100644 --- a/src/Mtlstats/Actions/NewGame.hs +++ b/src/Mtlstats/Actions/NewGame.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Actions/NewGame/GoalieInput.hs b/src/Mtlstats/Actions/NewGame/GoalieInput.hs index ca9df98..6b4df22 100644 --- a/src/Mtlstats/Actions/NewGame/GoalieInput.hs +++ b/src/Mtlstats/Actions/NewGame/GoalieInput.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Config.hs b/src/Mtlstats/Config.hs index f84fcae..388d836 100644 --- a/src/Mtlstats/Config.hs +++ b/src/Mtlstats/Config.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control.hs b/src/Mtlstats/Control.hs index 460c62d..badb7e1 100644 --- a/src/Mtlstats/Control.hs +++ b/src/Mtlstats/Control.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/CreateGoalie.hs b/src/Mtlstats/Control/CreateGoalie.hs index e994ece..27b0670 100644 --- a/src/Mtlstats/Control/CreateGoalie.hs +++ b/src/Mtlstats/Control/CreateGoalie.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/CreatePlayer.hs b/src/Mtlstats/Control/CreatePlayer.hs index 940fec1..0bc07d8 100644 --- a/src/Mtlstats/Control/CreatePlayer.hs +++ b/src/Mtlstats/Control/CreatePlayer.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/EditGoalie.hs b/src/Mtlstats/Control/EditGoalie.hs index 7632084..87d75e7 100644 --- a/src/Mtlstats/Control/EditGoalie.hs +++ b/src/Mtlstats/Control/EditGoalie.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/EditPlayer.hs b/src/Mtlstats/Control/EditPlayer.hs index 5fe1d96..ed869b2 100644 --- a/src/Mtlstats/Control/EditPlayer.hs +++ b/src/Mtlstats/Control/EditPlayer.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/EditStandings.hs b/src/Mtlstats/Control/EditStandings.hs index 04082dd..22c41f1 100644 --- a/src/Mtlstats/Control/EditStandings.hs +++ b/src/Mtlstats/Control/EditStandings.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/NewGame.hs b/src/Mtlstats/Control/NewGame.hs index 1c284c8..c596b32 100644 --- a/src/Mtlstats/Control/NewGame.hs +++ b/src/Mtlstats/Control/NewGame.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/NewGame/GoalieInput.hs b/src/Mtlstats/Control/NewGame/GoalieInput.hs index 2c0fbaa..938eb06 100644 --- a/src/Mtlstats/Control/NewGame/GoalieInput.hs +++ b/src/Mtlstats/Control/NewGame/GoalieInput.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Control/TitleScreen.hs b/src/Mtlstats/Control/TitleScreen.hs index d1a96cd..611b26e 100644 --- a/src/Mtlstats/Control/TitleScreen.hs +++ b/src/Mtlstats/Control/TitleScreen.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify @@ -41,7 +41,7 @@ titleScreenC = Controller ] ++ titleText ++ [ "" - , "Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe" + , "Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe" , "" , "" , "Press any key to continue..." diff --git a/src/Mtlstats/Format.hs b/src/Mtlstats/Format.hs index 8499379..5fcec7e 100644 --- a/src/Mtlstats/Format.hs +++ b/src/Mtlstats/Format.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Handlers.hs b/src/Mtlstats/Handlers.hs index ba7d121..fa79b62 100644 --- a/src/Mtlstats/Handlers.hs +++ b/src/Mtlstats/Handlers.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Helpers/Goalie.hs b/src/Mtlstats/Helpers/Goalie.hs index 9aef021..ab0b7c3 100644 --- a/src/Mtlstats/Helpers/Goalie.hs +++ b/src/Mtlstats/Helpers/Goalie.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Helpers/Player.hs b/src/Mtlstats/Helpers/Player.hs index 2e1ad5f..408fb65 100644 --- a/src/Mtlstats/Helpers/Player.hs +++ b/src/Mtlstats/Helpers/Player.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Helpers/Position.hs b/src/Mtlstats/Helpers/Position.hs index 2c4c0fe..4822a54 100644 --- a/src/Mtlstats/Helpers/Position.hs +++ b/src/Mtlstats/Helpers/Position.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Menu.hs b/src/Mtlstats/Menu.hs index f5df8ec..2ae5cc4 100644 --- a/src/Mtlstats/Menu.hs +++ b/src/Mtlstats/Menu.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Menu/EditGoalie.hs b/src/Mtlstats/Menu/EditGoalie.hs index f8bec65..f84482f 100644 --- a/src/Mtlstats/Menu/EditGoalie.hs +++ b/src/Mtlstats/Menu/EditGoalie.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Menu/EditPlayer.hs b/src/Mtlstats/Menu/EditPlayer.hs index 42512ee..9773624 100644 --- a/src/Mtlstats/Menu/EditPlayer.hs +++ b/src/Mtlstats/Menu/EditPlayer.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Menu/EditStandings.hs b/src/Mtlstats/Menu/EditStandings.hs index b57b1fd..e3e9fff 100644 --- a/src/Mtlstats/Menu/EditStandings.hs +++ b/src/Mtlstats/Menu/EditStandings.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Prompt.hs b/src/Mtlstats/Prompt.hs index d0b5fef..14661e0 100644 --- a/src/Mtlstats/Prompt.hs +++ b/src/Mtlstats/Prompt.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Prompt/EditGoalie.hs b/src/Mtlstats/Prompt/EditGoalie.hs index f77fe60..ae16ab4 100644 --- a/src/Mtlstats/Prompt/EditGoalie.hs +++ b/src/Mtlstats/Prompt/EditGoalie.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Prompt/EditPlayer.hs b/src/Mtlstats/Prompt/EditPlayer.hs index fa4dcda..b064723 100644 --- a/src/Mtlstats/Prompt/EditPlayer.hs +++ b/src/Mtlstats/Prompt/EditPlayer.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Prompt/EditStandings.hs b/src/Mtlstats/Prompt/EditStandings.hs index 94b74fc..01b0cb9 100644 --- a/src/Mtlstats/Prompt/EditStandings.hs +++ b/src/Mtlstats/Prompt/EditStandings.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Prompt/NewGame.hs b/src/Mtlstats/Prompt/NewGame.hs index 71e6e54..a26240e 100644 --- a/src/Mtlstats/Prompt/NewGame.hs +++ b/src/Mtlstats/Prompt/NewGame.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Prompt/NewGame/GoalieInput.hs b/src/Mtlstats/Prompt/NewGame/GoalieInput.hs index df5e6d4..d2c6582 100644 --- a/src/Mtlstats/Prompt/NewGame/GoalieInput.hs +++ b/src/Mtlstats/Prompt/NewGame/GoalieInput.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Report.hs b/src/Mtlstats/Report.hs index fd08afc..8ea8d41 100644 --- a/src/Mtlstats/Report.hs +++ b/src/Mtlstats/Report.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Types.hs b/src/Mtlstats/Types.hs index b5ad653..2afe782 100644 --- a/src/Mtlstats/Types.hs +++ b/src/Mtlstats/Types.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Types/Menu.hs b/src/Mtlstats/Types/Menu.hs index b0cdb31..ea8a958 100644 --- a/src/Mtlstats/Types/Menu.hs +++ b/src/Mtlstats/Types/Menu.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/src/Mtlstats/Util.hs b/src/Mtlstats/Util.hs index 02249f9..1edb1de 100644 --- a/src/Mtlstats/Util.hs +++ b/src/Mtlstats/Util.hs @@ -1,7 +1,7 @@ {- | mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Actions/EditStandingsSpec.hs b/test/Actions/EditStandingsSpec.hs index 4f968e2..23f1986 100644 --- a/test/Actions/EditStandingsSpec.hs +++ b/test/Actions/EditStandingsSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Actions/NewGame/GoalieInputSpec.hs b/test/Actions/NewGame/GoalieInputSpec.hs index c688a88..3e2fe8f 100644 --- a/test/Actions/NewGame/GoalieInputSpec.hs +++ b/test/Actions/NewGame/GoalieInputSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Actions/NewGameSpec.hs b/test/Actions/NewGameSpec.hs index 4d9ed5d..ed343af 100644 --- a/test/Actions/NewGameSpec.hs +++ b/test/Actions/NewGameSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/ActionsSpec.hs b/test/ActionsSpec.hs index 1f18d5b..5fd9884 100644 --- a/test/ActionsSpec.hs +++ b/test/ActionsSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/FormatSpec.hs b/test/FormatSpec.hs index 3596300..7db175c 100644 --- a/test/FormatSpec.hs +++ b/test/FormatSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/HandlersSpec.hs b/test/HandlersSpec.hs index 94cbf1c..71aa355 100644 --- a/test/HandlersSpec.hs +++ b/test/HandlersSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Helpers/GoalieSpec.hs b/test/Helpers/GoalieSpec.hs index 9b1d5f9..56ab5c8 100644 --- a/test/Helpers/GoalieSpec.hs +++ b/test/Helpers/GoalieSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Helpers/PlayerSpec.hs b/test/Helpers/PlayerSpec.hs index 50dd0ec..a536856 100644 --- a/test/Helpers/PlayerSpec.hs +++ b/test/Helpers/PlayerSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Helpers/PositionSpec.hs b/test/Helpers/PositionSpec.hs index b9d9c8b..2d04b1d 100644 --- a/test/Helpers/PositionSpec.hs +++ b/test/Helpers/PositionSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/HelpersSpec.hs b/test/HelpersSpec.hs index 7399bce..86a9e66 100644 --- a/test/HelpersSpec.hs +++ b/test/HelpersSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/ReportSpec.hs b/test/ReportSpec.hs index 631b9a0..7d7f6f5 100644 --- a/test/ReportSpec.hs +++ b/test/ReportSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Spec.hs b/test/Spec.hs index 71e20c2..e4f98a7 100644 --- a/test/Spec.hs +++ b/test/Spec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/Types/MenuSpec.hs b/test/Types/MenuSpec.hs index 6247b64..c5002b6 100644 --- a/test/Types/MenuSpec.hs +++ b/test/Types/MenuSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/TypesSpec.hs b/test/TypesSpec.hs index e6d6340..4b45181 100644 --- a/test/TypesSpec.hs +++ b/test/TypesSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify diff --git a/test/UtilSpec.hs b/test/UtilSpec.hs index b0c49f1..8acfb92 100644 --- a/test/UtilSpec.hs +++ b/test/UtilSpec.hs @@ -1,7 +1,7 @@ {- mtlstats -Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe +Copyright (C) 1984, 1985, 2019, 2020, 2021 Rhéal Lamothe This program is free software: you can redistribute it and/or modify