Skip to content

Commit c784b73

Browse files
committed
bumps
1 parent b4fd664 commit c784b73

File tree

9 files changed

+106
-10
lines changed

9 files changed

+106
-10
lines changed

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ lazy val exampleTapir = crossProject(JVMPlatform)
7575
.settings(
7676
name := "tapir example",
7777
libraryDependencies ++= Seq(
78-
"com.softwaremill.sttp.tapir" %%% "tapir-akka-http-server" % "1.0.1",
79-
"com.softwaremill.sttp.tapir" %%% "tapir-core" % "1.0.1",
80-
"com.softwaremill.sttp.tapir" %%% "tapir-cats" % "1.0.1",
78+
"com.softwaremill.sttp.tapir" %%% "tapir-akka-http-server" % "1.0.2",
79+
"com.softwaremill.sttp.tapir" %%% "tapir-core" % "1.0.2",
80+
"com.softwaremill.sttp.tapir" %%% "tapir-cats" % "1.0.2",
8181
"org.apache.logging.log4j" % "log4j-api" % "2.18.0",
8282
"org.apache.logging.log4j" % "log4j-core" % "2.18.0",
8383
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.18.0",
8484
"org.tpolecat" %%% "natchez-log" % "0.1.6",
85-
"org.typelevel" %%% "cats-effect" % "3.3.13",
86-
"org.typelevel" %%% "log4cats-slf4j" % "2.3.2",
85+
"org.typelevel" %%% "cats-effect" % "3.3.14",
86+
"org.typelevel" %%% "log4cats-slf4j" % "2.4.0",
8787
),
8888
)
8989

@@ -101,8 +101,8 @@ lazy val exampleVanillaAkka = crossProject(JVMPlatform)
101101
"org.apache.logging.log4j" % "log4j-core" % "2.18.0",
102102
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.18.0",
103103
"org.tpolecat" %%% "natchez-log" % "0.1.6",
104-
"org.typelevel" %%% "cats-effect" % "3.3.13",
105-
"org.typelevel" %%% "log4cats-slf4j" % "2.3.2",
104+
"org.typelevel" %%% "cats-effect" % "3.3.14",
105+
"org.typelevel" %%% "log4cats-slf4j" % "2.4.0",
106106
),
107107
)
108108

examples/tapir/shared/src/main/scala/natchez/akka/http/examples/tapir/HelloService.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 Massimo Siani
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package natchez.akka.http.examples.tapir
218

319
import cats.Applicative

examples/tapir/shared/src/main/scala/natchez/akka/http/examples/tapir/Main.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 Massimo Siani
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package natchez.akka.http.examples.tapir
218

319
import akka.actor.ActorSystem

examples/vanilla-akka/shared/src/main/scala/natchez/akka/http/examples/vanilla/Main.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 Massimo Siani
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package natchez.akka.http.examples.vanilla
218

319
import akka.actor.ActorSystem

natchez-akka-http/shared/src/main/scala/natchez/akka/http/AkkaRequest.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 Massimo Siani
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package natchez.akka.http
218

319
import akka.http.scaladsl.model.HttpRequest

natchez-akka-http/shared/src/main/scala/natchez/akka/http/EntryPointOps.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 Massimo Siani
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package natchez.akka.http
218

319
import akka.http.scaladsl.server.Route

natchez-akka-http/shared/src/main/scala/natchez/akka/http/NatchezAkkaHttp.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 Massimo Siani
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package natchez.akka.http
218

319
import akka.http.scaladsl.model.{HttpRequest, HttpResponse}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version = 1.6.2
1+
sbt.version=1.7.1

project/plugins.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
22
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.2.16")
33
addSbtPlugin("com.timushev.sbt" % "sbt-rewarn" % "0.1.3")
44
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
5-
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.12")
6-
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.12")
5+
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13")
6+
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.13")

0 commit comments

Comments
 (0)