From 3c3c2f947d8cca4a6284e40d8fff5607d5ed79c4 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Wed, 17 Feb 2021 09:12:46 +0100 Subject: [PATCH] Update sbt-spiewak-sonatype to 0.20.3 (#317) Co-authored-by: Lars Hupel --- build.sbt | 4 +--- .../cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityFunctorListenInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityFunctorTellInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityFunctorListenInstancesCompat.scala | 2 +- .../cats/mtl/LowPriorityFunctorTellInstancesCompat.scala | 2 +- core/src/main/scala/cats/mtl/Ask.scala | 2 +- core/src/main/scala/cats/mtl/Censor.scala | 2 +- core/src/main/scala/cats/mtl/Chronicle.scala | 2 +- core/src/main/scala/cats/mtl/Handle.scala | 2 +- core/src/main/scala/cats/mtl/Listen.scala | 2 +- core/src/main/scala/cats/mtl/Local.scala | 2 +- core/src/main/scala/cats/mtl/MonadPartialOrder.scala | 2 +- core/src/main/scala/cats/mtl/Raise.scala | 2 +- core/src/main/scala/cats/mtl/Stateful.scala | 2 +- core/src/main/scala/cats/mtl/Tell.scala | 2 +- core/src/main/scala/cats/mtl/implicits/package.scala | 2 +- core/src/main/scala/cats/mtl/package.scala | 2 +- core/src/main/scala/cats/mtl/syntax/all.scala | 2 +- core/src/main/scala/cats/mtl/syntax/ask.scala | 2 +- core/src/main/scala/cats/mtl/syntax/chronicle.scala | 2 +- core/src/main/scala/cats/mtl/syntax/handle.scala | 2 +- core/src/main/scala/cats/mtl/syntax/listen.scala | 2 +- core/src/main/scala/cats/mtl/syntax/local.scala | 2 +- core/src/main/scala/cats/mtl/syntax/raise.scala | 2 +- core/src/main/scala/cats/mtl/syntax/state.scala | 2 +- core/src/main/scala/cats/mtl/syntax/tell.scala | 2 +- laws/src/main/scala/cats/mtl/laws/AskLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/CensorLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/ChronicleLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/HandleLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/ListenLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/LocalLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/RaiseLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/StatefulLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/TellLaws.scala | 2 +- laws/src/main/scala/cats/mtl/laws/discipline/AskTests.scala | 2 +- .../src/main/scala/cats/mtl/laws/discipline/CensorTests.scala | 2 +- .../main/scala/cats/mtl/laws/discipline/ChronicleTests.scala | 2 +- .../src/main/scala/cats/mtl/laws/discipline/HandleTests.scala | 2 +- .../src/main/scala/cats/mtl/laws/discipline/ListenTests.scala | 2 +- laws/src/main/scala/cats/mtl/laws/discipline/LocalTests.scala | 2 +- laws/src/main/scala/cats/mtl/laws/discipline/RaiseTests.scala | 2 +- .../main/scala/cats/mtl/laws/discipline/StatefulTests.scala | 2 +- laws/src/main/scala/cats/mtl/laws/discipline/TellTests.scala | 2 +- project/plugins.sbt | 2 +- tests/.js/src/test/scala/cats/mtl/tests/Platform.scala | 2 +- tests/.jvm/src/test/scala/cats/mtl/tests/Platform.scala | 2 +- tests/src/test/scala/cats/mtl/tests/BaseSuite.scala | 2 +- tests/src/test/scala/cats/mtl/tests/EitherTTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/HandleTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/IorTTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/OptionTTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/ReaderTTests.scala | 2 +- .../test/scala/cats/mtl/tests/ReaderWriterStateTTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/StateTTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/SummonableImplicits.scala | 2 +- tests/src/test/scala/cats/mtl/tests/Syntax.scala | 2 +- tests/src/test/scala/cats/mtl/tests/ValidatedTests.scala | 2 +- tests/src/test/scala/cats/mtl/tests/WriterTTests.scala | 2 +- 63 files changed, 63 insertions(+), 65 deletions(-) diff --git a/build.sbt b/build.sbt index 4aeb64fd..bc40cb6f 100644 --- a/build.sbt +++ b/build.sbt @@ -29,9 +29,7 @@ ThisBuild / crossScalaVersions := Seq("3.0.0-M2", "3.0.0-M3", "2.12.12", Scala21 ThisBuild / githubWorkflowBuildPreamble ++= Seq( WorkflowStep.Use( - "ruby", - "setup-ruby", - "v1", + UseRef.Public("ruby", "setup-ruby", "v1"), name = Some("Setup Ruby"), params = Map("ruby-version" -> "2.7")), WorkflowStep.Run(List("gem install jekyll -v 4.0.0"), name = Some("Install Jekyll")) diff --git a/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala b/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala index abb28f50..d32b149a 100644 --- a/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala +++ b/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala b/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala index 20e19cac..4699f9c6 100644 --- a/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala +++ b/core/src/main/scala-2.12/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala b/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala index 7ab3c3b5..a6ce36dc 100644 --- a/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala +++ b/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala b/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala index 339285d3..cff23484 100644 --- a/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala +++ b/core/src/main/scala-2.12/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala b/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala index 2df3ff0f..858ef13e 100644 --- a/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala +++ b/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeAskInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala b/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala index 61720940..286b4f1b 100644 --- a/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala +++ b/core/src/main/scala-2.13/cats/mtl/LowPriorityApplicativeLocalInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala b/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala index 5f7c486e..34637e7f 100644 --- a/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala +++ b/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorListenInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala b/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala index a45227bc..1d89e7bd 100644 --- a/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala +++ b/core/src/main/scala-2.13/cats/mtl/LowPriorityFunctorTellInstancesCompat.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Ask.scala b/core/src/main/scala/cats/mtl/Ask.scala index 51105822..889430c7 100644 --- a/core/src/main/scala/cats/mtl/Ask.scala +++ b/core/src/main/scala/cats/mtl/Ask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Censor.scala b/core/src/main/scala/cats/mtl/Censor.scala index 31416a55..7762de93 100644 --- a/core/src/main/scala/cats/mtl/Censor.scala +++ b/core/src/main/scala/cats/mtl/Censor.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Chronicle.scala b/core/src/main/scala/cats/mtl/Chronicle.scala index e55f34b2..df8fd5cb 100644 --- a/core/src/main/scala/cats/mtl/Chronicle.scala +++ b/core/src/main/scala/cats/mtl/Chronicle.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Handle.scala b/core/src/main/scala/cats/mtl/Handle.scala index 54df205f..c935a384 100644 --- a/core/src/main/scala/cats/mtl/Handle.scala +++ b/core/src/main/scala/cats/mtl/Handle.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Listen.scala b/core/src/main/scala/cats/mtl/Listen.scala index 42727005..933d1c96 100644 --- a/core/src/main/scala/cats/mtl/Listen.scala +++ b/core/src/main/scala/cats/mtl/Listen.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Local.scala b/core/src/main/scala/cats/mtl/Local.scala index 288952ae..972f532e 100644 --- a/core/src/main/scala/cats/mtl/Local.scala +++ b/core/src/main/scala/cats/mtl/Local.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/MonadPartialOrder.scala b/core/src/main/scala/cats/mtl/MonadPartialOrder.scala index e8fb3792..64eec0a3 100644 --- a/core/src/main/scala/cats/mtl/MonadPartialOrder.scala +++ b/core/src/main/scala/cats/mtl/MonadPartialOrder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Raise.scala b/core/src/main/scala/cats/mtl/Raise.scala index 8e2397ee..38de85d8 100644 --- a/core/src/main/scala/cats/mtl/Raise.scala +++ b/core/src/main/scala/cats/mtl/Raise.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Stateful.scala b/core/src/main/scala/cats/mtl/Stateful.scala index 401ad85c..decc2eee 100644 --- a/core/src/main/scala/cats/mtl/Stateful.scala +++ b/core/src/main/scala/cats/mtl/Stateful.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/Tell.scala b/core/src/main/scala/cats/mtl/Tell.scala index 1577dd52..70d11bb1 100644 --- a/core/src/main/scala/cats/mtl/Tell.scala +++ b/core/src/main/scala/cats/mtl/Tell.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/implicits/package.scala b/core/src/main/scala/cats/mtl/implicits/package.scala index 21c4c61e..e5379382 100644 --- a/core/src/main/scala/cats/mtl/implicits/package.scala +++ b/core/src/main/scala/cats/mtl/implicits/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/package.scala b/core/src/main/scala/cats/mtl/package.scala index 0f7ac75b..b0b1fd3f 100644 --- a/core/src/main/scala/cats/mtl/package.scala +++ b/core/src/main/scala/cats/mtl/package.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/all.scala b/core/src/main/scala/cats/mtl/syntax/all.scala index 17b3ff46..68e7cd97 100644 --- a/core/src/main/scala/cats/mtl/syntax/all.scala +++ b/core/src/main/scala/cats/mtl/syntax/all.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/ask.scala b/core/src/main/scala/cats/mtl/syntax/ask.scala index 8ac2a8ab..033bcd84 100644 --- a/core/src/main/scala/cats/mtl/syntax/ask.scala +++ b/core/src/main/scala/cats/mtl/syntax/ask.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/chronicle.scala b/core/src/main/scala/cats/mtl/syntax/chronicle.scala index a43b25aa..f94548f7 100644 --- a/core/src/main/scala/cats/mtl/syntax/chronicle.scala +++ b/core/src/main/scala/cats/mtl/syntax/chronicle.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/handle.scala b/core/src/main/scala/cats/mtl/syntax/handle.scala index b7c72c28..946556d4 100644 --- a/core/src/main/scala/cats/mtl/syntax/handle.scala +++ b/core/src/main/scala/cats/mtl/syntax/handle.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/listen.scala b/core/src/main/scala/cats/mtl/syntax/listen.scala index 65c25e70..d2329b61 100644 --- a/core/src/main/scala/cats/mtl/syntax/listen.scala +++ b/core/src/main/scala/cats/mtl/syntax/listen.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/local.scala b/core/src/main/scala/cats/mtl/syntax/local.scala index 3ec2eb7f..3965d588 100644 --- a/core/src/main/scala/cats/mtl/syntax/local.scala +++ b/core/src/main/scala/cats/mtl/syntax/local.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/raise.scala b/core/src/main/scala/cats/mtl/syntax/raise.scala index ee0f85ee..4e59e555 100644 --- a/core/src/main/scala/cats/mtl/syntax/raise.scala +++ b/core/src/main/scala/cats/mtl/syntax/raise.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/state.scala b/core/src/main/scala/cats/mtl/syntax/state.scala index af41bf1e..e4a83827 100644 --- a/core/src/main/scala/cats/mtl/syntax/state.scala +++ b/core/src/main/scala/cats/mtl/syntax/state.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/core/src/main/scala/cats/mtl/syntax/tell.scala b/core/src/main/scala/cats/mtl/syntax/tell.scala index 66294dd8..788d2f1c 100644 --- a/core/src/main/scala/cats/mtl/syntax/tell.scala +++ b/core/src/main/scala/cats/mtl/syntax/tell.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/AskLaws.scala b/laws/src/main/scala/cats/mtl/laws/AskLaws.scala index 541bf301..fb91087c 100644 --- a/laws/src/main/scala/cats/mtl/laws/AskLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/AskLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/CensorLaws.scala b/laws/src/main/scala/cats/mtl/laws/CensorLaws.scala index 1d39c976..d08c39d0 100644 --- a/laws/src/main/scala/cats/mtl/laws/CensorLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/CensorLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/ChronicleLaws.scala b/laws/src/main/scala/cats/mtl/laws/ChronicleLaws.scala index 43d2f7a8..7c5cce2e 100644 --- a/laws/src/main/scala/cats/mtl/laws/ChronicleLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/ChronicleLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/HandleLaws.scala b/laws/src/main/scala/cats/mtl/laws/HandleLaws.scala index 8689aac9..ac302e2c 100644 --- a/laws/src/main/scala/cats/mtl/laws/HandleLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/HandleLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/ListenLaws.scala b/laws/src/main/scala/cats/mtl/laws/ListenLaws.scala index 445cf1e2..9142b89c 100644 --- a/laws/src/main/scala/cats/mtl/laws/ListenLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/ListenLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/LocalLaws.scala b/laws/src/main/scala/cats/mtl/laws/LocalLaws.scala index 0f3d0867..44f01076 100644 --- a/laws/src/main/scala/cats/mtl/laws/LocalLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/LocalLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/RaiseLaws.scala b/laws/src/main/scala/cats/mtl/laws/RaiseLaws.scala index 8b5179e7..67350124 100644 --- a/laws/src/main/scala/cats/mtl/laws/RaiseLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/RaiseLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/StatefulLaws.scala b/laws/src/main/scala/cats/mtl/laws/StatefulLaws.scala index 7838d8cb..64c80b57 100644 --- a/laws/src/main/scala/cats/mtl/laws/StatefulLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/StatefulLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/TellLaws.scala b/laws/src/main/scala/cats/mtl/laws/TellLaws.scala index 52edf581..de499f22 100644 --- a/laws/src/main/scala/cats/mtl/laws/TellLaws.scala +++ b/laws/src/main/scala/cats/mtl/laws/TellLaws.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/AskTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/AskTests.scala index a67d27de..05a7002e 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/AskTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/AskTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/CensorTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/CensorTests.scala index 47ba4602..446d4929 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/CensorTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/CensorTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/ChronicleTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/ChronicleTests.scala index 8bcc9710..145b9240 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/ChronicleTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/ChronicleTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/HandleTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/HandleTests.scala index 9c881b7a..16bc5379 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/HandleTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/HandleTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/ListenTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/ListenTests.scala index ad9dabe0..77d14ba4 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/ListenTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/ListenTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/LocalTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/LocalTests.scala index fc0c7b76..81a79424 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/LocalTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/LocalTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/RaiseTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/RaiseTests.scala index b0a34e41..f1684e45 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/RaiseTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/RaiseTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/StatefulTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/StatefulTests.scala index b95a4071..936bd770 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/StatefulTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/StatefulTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/laws/src/main/scala/cats/mtl/laws/discipline/TellTests.scala b/laws/src/main/scala/cats/mtl/laws/discipline/TellTests.scala index c8cd1205..c0464e06 100644 --- a/laws/src/main/scala/cats/mtl/laws/discipline/TellTests.scala +++ b/laws/src/main/scala/cats/mtl/laws/discipline/TellTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/project/plugins.sbt b/project/plugins.sbt index 4adb0c0b..a2184dde 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -5,4 +5,4 @@ addSbtPlugin("com.47deg" % "sbt-microsites" % "1.3.2") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.17") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0") -addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.19.3") +addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.20.3") diff --git a/tests/.js/src/test/scala/cats/mtl/tests/Platform.scala b/tests/.js/src/test/scala/cats/mtl/tests/Platform.scala index f8444182..1edd32e0 100644 --- a/tests/.js/src/test/scala/cats/mtl/tests/Platform.scala +++ b/tests/.js/src/test/scala/cats/mtl/tests/Platform.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/.jvm/src/test/scala/cats/mtl/tests/Platform.scala b/tests/.jvm/src/test/scala/cats/mtl/tests/Platform.scala index 906ec6e5..0ba1c350 100644 --- a/tests/.jvm/src/test/scala/cats/mtl/tests/Platform.scala +++ b/tests/.jvm/src/test/scala/cats/mtl/tests/Platform.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/BaseSuite.scala b/tests/src/test/scala/cats/mtl/tests/BaseSuite.scala index d8ebb517..2ca9b0da 100644 --- a/tests/src/test/scala/cats/mtl/tests/BaseSuite.scala +++ b/tests/src/test/scala/cats/mtl/tests/BaseSuite.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/EitherTTests.scala b/tests/src/test/scala/cats/mtl/tests/EitherTTests.scala index 0ffed76a..ae899f0b 100644 --- a/tests/src/test/scala/cats/mtl/tests/EitherTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/EitherTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/HandleTests.scala b/tests/src/test/scala/cats/mtl/tests/HandleTests.scala index 5ac99606..2967f8f0 100644 --- a/tests/src/test/scala/cats/mtl/tests/HandleTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/HandleTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/IorTTests.scala b/tests/src/test/scala/cats/mtl/tests/IorTTests.scala index e54fe6e8..ed0639f6 100644 --- a/tests/src/test/scala/cats/mtl/tests/IorTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/IorTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/OptionTTests.scala b/tests/src/test/scala/cats/mtl/tests/OptionTTests.scala index cd8a75b1..538986b8 100644 --- a/tests/src/test/scala/cats/mtl/tests/OptionTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/OptionTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/ReaderTTests.scala b/tests/src/test/scala/cats/mtl/tests/ReaderTTests.scala index 26624592..68f05158 100644 --- a/tests/src/test/scala/cats/mtl/tests/ReaderTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/ReaderTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/ReaderWriterStateTTests.scala b/tests/src/test/scala/cats/mtl/tests/ReaderWriterStateTTests.scala index 378328f4..c4d904ab 100644 --- a/tests/src/test/scala/cats/mtl/tests/ReaderWriterStateTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/ReaderWriterStateTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/StateTTests.scala b/tests/src/test/scala/cats/mtl/tests/StateTTests.scala index 70c3c8c4..6b6c77db 100644 --- a/tests/src/test/scala/cats/mtl/tests/StateTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/StateTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/SummonableImplicits.scala b/tests/src/test/scala/cats/mtl/tests/SummonableImplicits.scala index b8081d28..47fb45b7 100644 --- a/tests/src/test/scala/cats/mtl/tests/SummonableImplicits.scala +++ b/tests/src/test/scala/cats/mtl/tests/SummonableImplicits.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/Syntax.scala b/tests/src/test/scala/cats/mtl/tests/Syntax.scala index bacce1ec..7167f588 100644 --- a/tests/src/test/scala/cats/mtl/tests/Syntax.scala +++ b/tests/src/test/scala/cats/mtl/tests/Syntax.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/ValidatedTests.scala b/tests/src/test/scala/cats/mtl/tests/ValidatedTests.scala index b29b1c41..265f6d0a 100644 --- a/tests/src/test/scala/cats/mtl/tests/ValidatedTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/ValidatedTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * 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/tests/src/test/scala/cats/mtl/tests/WriterTTests.scala b/tests/src/test/scala/cats/mtl/tests/WriterTTests.scala index a30dc441..65ed17a0 100644 --- a/tests/src/test/scala/cats/mtl/tests/WriterTTests.scala +++ b/tests/src/test/scala/cats/mtl/tests/WriterTTests.scala @@ -1,5 +1,5 @@ /* - * Copyright 2020 Typelevel + * Copyright 2021 Typelevel * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.