Skip to content

Commit 0cd7885

Browse files
authored
Merge pull request #424 from tpolecat/update-deps
Update deps and headers
2 parents 801df9f + d7efc99 commit 0cd7885

File tree

216 files changed

+251
-251
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+251
-251
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018 by Rob Norris
3+
Copyright (c) 2018-2021 by Rob Norris
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

build.sbt

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
// Our Scala versions.
44
lazy val `scala-2.12` = "2.12.13"
55
lazy val `scala-2.13` = "2.13.5"
6-
lazy val `scala-3.0-prev` = "3.0.0-M3"
7-
lazy val `scala-3.0-curr` = "3.0.0-RC1"
6+
lazy val `scala-3.0-prev` = "3.0.0-RC1"
7+
lazy val `scala-3.0-curr` = "3.0.0-RC2"
88

99
// This is used in a couple places
10-
lazy val fs2Version = "2.5.3"
10+
lazy val fs2Version = "2.5.4"
1111

1212
// Global Settings
1313
lazy val commonSettings = Seq(
@@ -27,7 +27,7 @@ lazy val commonSettings = Seq(
2727
// Headers
2828
headerMappings := headerMappings.value + (HeaderFileType.scala -> HeaderCommentStyle.cppStyleLineComment),
2929
headerLicense := Some(HeaderLicense.Custom(
30-
"""|Copyright (c) 2018-2020 by Rob Norris
30+
"""|Copyright (c) 2018-2021 by Rob Norris
3131
|This software is licensed under the MIT License (MIT).
3232
|For more information see LICENSE or https://opensource.org/licenses/MIT
3333
|""".stripMargin
@@ -103,19 +103,19 @@ lazy val core = project
103103
description := "Tagless, non-blocking data access library for Postgres.",
104104
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
105105
libraryDependencies ++= Seq(
106-
"org.typelevel" %% "cats-core" % "2.4.2",
107-
"org.typelevel" %% "cats-effect" % "2.3.3",
106+
"org.typelevel" %% "cats-core" % "2.5.0",
107+
"org.typelevel" %% "cats-effect" % "2.4.1",
108108
"co.fs2" %% "fs2-core" % fs2Version,
109109
"co.fs2" %% "fs2-io" % fs2Version,
110-
"org.scodec" %% "scodec-core" % (if (isDotty.value) "2.0.0-RC1" else "1.11.7"),
111-
"org.scodec" %% "scodec-cats" % "1.1.0-RC1",
112-
"org.tpolecat" %% "natchez-core" % "0.0.20",
113-
"org.tpolecat" %% "sourcepos" % "0.1.1",
110+
"org.scodec" %% "scodec-core" % (if (isDotty.value) "2.0.0-RC2" else "1.11.7"),
111+
"org.scodec" %% "scodec-cats" % "1.1.0-RC2",
112+
"org.tpolecat" %% "natchez-core" % "0.0.22",
113+
"org.tpolecat" %% "sourcepos" % "0.1.2",
114114
"com.ongres.scram" % "client" % "2.1",
115115
) ++ Seq(
116116
"com.beachape" %% "enumeratum" % "1.6.1",
117117
).map(_.withDottyCompat(scalaVersion.value)) ++ Seq(
118-
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.2",
118+
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.3",
119119
)
120120
)
121121

@@ -152,11 +152,11 @@ lazy val tests = project
152152
publish / skip := true,
153153
scalacOptions -= "-Xfatal-warnings",
154154
libraryDependencies ++= Seq(
155-
"org.typelevel" %% "scalacheck-effect-munit" % "0.7.1",
156-
"org.typelevel" %% "munit-cats-effect-2" % "0.13.1",
157-
"org.typelevel" %% "cats-free" % "2.4.2",
158-
"org.typelevel" %% "cats-laws" % "2.4.2",
159-
"org.typelevel" %% "discipline-munit" % "1.0.6",
155+
"org.typelevel" %% "scalacheck-effect-munit" % "1.0.0",
156+
"org.typelevel" %% "munit-cats-effect-2" % "1.0.1",
157+
"org.typelevel" %% "cats-free" % "2.5.0",
158+
"org.typelevel" %% "cats-laws" % "2.5.0",
159+
"org.typelevel" %% "discipline-munit" % "1.0.7",
160160
) ++ Seq(
161161
"io.chrisdavenport" %% "cats-time" % "0.3.4",
162162
).filterNot(_ => isDotty.value),
@@ -171,8 +171,8 @@ lazy val example = project
171171
.settings(
172172
publish / skip := true,
173173
libraryDependencies ++= Seq(
174-
"org.tpolecat" %% "natchez-honeycomb" % "0.0.20",
175-
"org.tpolecat" %% "natchez-jaeger" % "0.0.20",
174+
"org.tpolecat" %% "natchez-honeycomb" % "0.0.22",
175+
"org.tpolecat" %% "natchez-jaeger" % "0.0.22",
176176
) ++ Seq(
177177
"org.http4s" %% "http4s-dsl" % "0.21.21",
178178
"org.http4s" %% "http4s-blaze-server" % "0.21.21",

modules/circe/src/main/scala-2/JsonCodecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2.12/data/ArrPlatform.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2.12/utll/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2.13+/data/ArrPlatform.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2.13/utll/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2/SqlState.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2/syntax/AllOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2/syntax/StringContextOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-2/util/Twiddler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/SqlState.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/syntax/AllOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/syntax/CodecOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/syntax/DecoderOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/syntax/EncoderOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/syntax/StringContextOps.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala-3/util/Twiddler.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/AppliedFragment.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Channel.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Codec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Command.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Cursor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Decoder.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Encoder.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Fragment.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/PreparedCommand.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/PreparedQuery.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Query.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/SSL.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Session.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

@@ -270,7 +270,7 @@ object Session {
270270
for {
271271
blocker <- Blocker[F]
272272
sockGrp <- SocketGroup[F](blocker)
273-
sslOp <- Resource.liftF(ssl.toSSLNegotiationOptions(blocker, if (debug) logger.some else none))
273+
sslOp <- Resource.eval(ssl.toSSLNegotiationOptions(blocker, if (debug) logger.some else none))
274274
pool <- Pool.of(session(sockGrp, sslOp), max)(Recyclers.full)
275275
} yield pool
276276

@@ -326,10 +326,10 @@ object Session {
326326
parameters: Map[String, String]
327327
): Resource[F, Session[F]] =
328328
for {
329-
namer <- Resource.liftF(Namer[F])
329+
namer <- Resource.eval(Namer[F])
330330
proto <- Protocol[F](host, port, debug, namer, readTimeout, writeTimeout, socketGroup, sslOptions)
331-
_ <- Resource.liftF(proto.startup(user, database, password, parameters))
332-
sess <- Resource.liftF(fromProtocol(proto, namer, strategy))
331+
_ <- Resource.eval(proto.startup(user, database, password, parameters))
332+
sess <- Resource.eval(fromProtocol(proto, namer, strategy))
333333
} yield sess
334334

335335
/**

modules/core/src/main/scala/Statement.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Transaction.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/Void.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/AllCodecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/BinaryCodecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/BooleanCodec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/EnumCodec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/NumericCodecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/TemporalCodecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/TextCodecs.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/codec/UuidCodec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/Arr.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/Completion.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/Identifier.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/Notification.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/TransactionAccessMode.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/TransactionIsolationLevel.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/TransactionStatus.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

modules/core/src/main/scala/data/Type.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020 by Rob Norris
1+
// Copyright (c) 2018-2021 by Rob Norris
22
// This software is licensed under the MIT License (MIT).
33
// For more information see LICENSE or https://opensource.org/licenses/MIT
44

0 commit comments

Comments
 (0)