Skip to content

Commit

Permalink
Merge pull request #425 from tpolecat/merge-with-master
Browse files Browse the repository at this point in the history
Merge with master, update to RC2
  • Loading branch information
tpolecat authored Mar 31, 2021
2 parents 91c51d1 + a38649c commit d3ae0d4
Show file tree
Hide file tree
Showing 218 changed files with 269 additions and 252 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 by Rob Norris
Copyright (c) 2018-2021 by Rob Norris

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
34 changes: 17 additions & 17 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
// Our Scala versions.
lazy val `scala-2.12` = "2.12.13"
lazy val `scala-2.13` = "2.13.5"
lazy val `scala-3.0-prev` = "3.0.0-M3"
lazy val `scala-3.0-curr` = "3.0.0-RC1"
lazy val `scala-3.0-prev` = "3.0.0-RC1"
lazy val `scala-3.0-curr` = "3.0.0-RC2"

// This is used in a couple places
lazy val fs2Version = "3.0.0-M9"
lazy val natchezVersion = "0.1.0-M4"
lazy val fs2Version = "3.0.1"
lazy val natchezVersion = "0.1.0"


// We do `evictionCheck` in CI
Expand Down Expand Up @@ -36,7 +36,7 @@ lazy val commonSettings = Seq(
// Headers
headerMappings := headerMappings.value + (HeaderFileType.scala -> HeaderCommentStyle.cppStyleLineComment),
headerLicense := Some(HeaderLicense.Custom(
"""|Copyright (c) 2018-2020 by Rob Norris
"""|Copyright (c) 2018-2021 by Rob Norris
|This software is licensed under the MIT License (MIT).
|For more information see LICENSE or https://opensource.org/licenses/MIT
|""".stripMargin
Expand Down Expand Up @@ -112,19 +112,19 @@ lazy val core = project
description := "Tagless, non-blocking data access library for Postgres.",
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.4.2",
"org.typelevel" %% "cats-effect" % "3.0.0-RC2",
"org.typelevel" %% "cats-core" % "2.5.0",
"org.typelevel" %% "cats-effect" % "3.0.1",
"co.fs2" %% "fs2-core" % fs2Version,
"co.fs2" %% "fs2-io" % fs2Version,
"org.scodec" %% "scodec-core" % (if (isDotty.value) "2.0.0-RC1" else "1.11.7"),
"org.scodec" %% "scodec-cats" % "1.1.0-RC1",
"org.scodec" %% "scodec-core" % (if (isDotty.value) "2.0.0-RC2" else "1.11.7"),
"org.scodec" %% "scodec-cats" % "1.1.0-RC2",
"org.tpolecat" %% "natchez-core" % natchezVersion,
"com.ongres.scram" % "client" % "2.1",
"org.tpolecat" %% "sourcepos" % "0.1.1",
"org.tpolecat" %% "sourcepos" % "0.1.2",
) ++ Seq(
"com.beachape" %% "enumeratum" % "1.6.1",
).map(_.withDottyCompat(scalaVersion.value)) ++ Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.2",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.3",
)
)

Expand All @@ -135,7 +135,7 @@ lazy val refined = project
.settings(commonSettings)
.settings(
libraryDependencies ++= Seq(
"eu.timepit" %% "refined" % "0.9.21",
"eu.timepit" %% "refined" % "0.9.22",
).map(_.withDottyCompat(scalaVersion.value))
)

Expand All @@ -161,11 +161,11 @@ lazy val tests = project
publish / skip := true,
scalacOptions -= "-Xfatal-warnings",
libraryDependencies ++= Seq(
"org.typelevel" %% "scalacheck-effect-munit" % "0.7.1",
"org.typelevel" %% "munit-cats-effect-3" % "0.13.1",
"org.typelevel" %% "cats-free" % "2.4.2",
"org.typelevel" %% "cats-laws" % "2.4.2",
"org.typelevel" %% "discipline-munit" % "1.0.6",
"org.typelevel" %% "scalacheck-effect-munit" % "1.0.0",
"org.typelevel" %% "munit-cats-effect-3" % "1.0.1",
"org.typelevel" %% "cats-free" % "2.5.0",
"org.typelevel" %% "cats-laws" % "2.5.0",
"org.typelevel" %% "discipline-munit" % "1.0.7",
) ++ Seq(
"io.chrisdavenport" %% "cats-time" % "0.3.4",
).filterNot(_ => isDotty.value),
Expand Down
2 changes: 1 addition & 1 deletion modules/circe/src/main/scala-2/JsonCodecs.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2.12/data/ArrPlatform.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2.12/utll/package.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2.13+/data/ArrPlatform.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2.13/utll/package.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2/SqlState.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2/syntax/AllOps.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-2/util/Twiddler.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-3/SqlState.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-3/syntax/AllOps.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-3/syntax/CodecOps.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-3/syntax/DecoderOps.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-3/syntax/EncoderOps.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala-3/util/Twiddler.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/AppliedFragment.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Channel.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
6 changes: 5 additions & 1 deletion modules/core/src/main/scala/Codec.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down Expand Up @@ -41,6 +41,10 @@ trait Codec[A] extends Encoder[A] with Decoder[A] { outer =>
def imap[B](f: A => B)(g: B => A): Codec[B] =
Codec(b => encode(g(b)), decode(_, _).map(f), types)

/** Contramap inputs from, and map decoded results to a new type `B` or an error, yielding a `Codec[B]`. */
def eimap[B](f: A => Either[String, B])(g: B => A): Codec[B] =
Codec(b => encode(g(b)), emap(f).decode(_, _), types)

/** Adapt this `Codec` from twiddle-list type A to isomorphic case-class type `B`. */
def gimap[B](implicit ev: Twiddler.Aux[B, A]): Codec[B] =
imap(ev.from)(ev.to)
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Command.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Cursor.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Decoder.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Encoder.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Fragment.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/PreparedCommand.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/PreparedQuery.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Query.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/SSL.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Session.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Statement.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Transaction.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/Void.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/AllCodecs.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/BinaryCodecs.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/BooleanCodec.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/EnumCodec.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/NumericCodecs.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/TemporalCodecs.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/TextCodecs.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/codec/UuidCodec.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/Arr.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/Completion.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/Identifier.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/Notification.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/TransactionStatus.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/Type.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/data/TypedRowDescription.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2018-2020 by Rob Norris
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
Loading

0 comments on commit d3ae0d4

Please sign in to comment.