Skip to content

Commit

Permalink
bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
massimosiani committed Jul 20, 2022
1 parent b4fd664 commit c784b73
Show file tree
Hide file tree
Showing 9 changed files with 106 additions and 10 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ lazy val exampleTapir = crossProject(JVMPlatform)
.settings(
name := "tapir example",
libraryDependencies ++= Seq(
"com.softwaremill.sttp.tapir" %%% "tapir-akka-http-server" % "1.0.1",
"com.softwaremill.sttp.tapir" %%% "tapir-core" % "1.0.1",
"com.softwaremill.sttp.tapir" %%% "tapir-cats" % "1.0.1",
"com.softwaremill.sttp.tapir" %%% "tapir-akka-http-server" % "1.0.2",
"com.softwaremill.sttp.tapir" %%% "tapir-core" % "1.0.2",
"com.softwaremill.sttp.tapir" %%% "tapir-cats" % "1.0.2",
"org.apache.logging.log4j" % "log4j-api" % "2.18.0",
"org.apache.logging.log4j" % "log4j-core" % "2.18.0",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.18.0",
"org.tpolecat" %%% "natchez-log" % "0.1.6",
"org.typelevel" %%% "cats-effect" % "3.3.13",
"org.typelevel" %%% "log4cats-slf4j" % "2.3.2",
"org.typelevel" %%% "cats-effect" % "3.3.14",
"org.typelevel" %%% "log4cats-slf4j" % "2.4.0",
),
)

Expand All @@ -101,8 +101,8 @@ lazy val exampleVanillaAkka = crossProject(JVMPlatform)
"org.apache.logging.log4j" % "log4j-core" % "2.18.0",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.18.0",
"org.tpolecat" %%% "natchez-log" % "0.1.6",
"org.typelevel" %%% "cats-effect" % "3.3.13",
"org.typelevel" %%% "log4cats-slf4j" % "2.3.2",
"org.typelevel" %%% "cats-effect" % "3.3.14",
"org.typelevel" %%% "log4cats-slf4j" % "2.4.0",
),
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2022 Massimo Siani
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package natchez.akka.http.examples.tapir

import cats.Applicative
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2022 Massimo Siani
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package natchez.akka.http.examples.tapir

import akka.actor.ActorSystem
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2022 Massimo Siani
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package natchez.akka.http.examples.vanilla

import akka.actor.ActorSystem
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2022 Massimo Siani
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package natchez.akka.http

import akka.http.scaladsl.model.HttpRequest
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2022 Massimo Siani
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package natchez.akka.http

import akka.http.scaladsl.server.Route
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2022 Massimo Siani
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package natchez.akka.http

import akka.http.scaladsl.model.{HttpRequest, HttpResponse}
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.6.2
sbt.version=1.7.1
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.2.16")
addSbtPlugin("com.timushev.sbt" % "sbt-rewarn" % "0.1.3")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.12")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.12")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.13")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.13")

0 comments on commit c784b73

Please sign in to comment.