Skip to content

Commit 66bf64e

Browse files
Update unroll-annotation, unroll-plugin to 0.2.0
1 parent f73a5d5 commit 66bf64e

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

build.sbt

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -127,17 +127,19 @@ inThisBuild(
127127

128128
ThisBuild / githubWorkflowBuildTimeout := Some(60.minutes)
129129

130-
lazy val exampleProjects: Seq[ProjectReference] = if ("git describe --tags --exact-match".! == 0) Seq.empty[ProjectReference] else Seq[ProjectReference](
131-
zioHttpExampleBasicAuth,
132-
zioHttpExampleCookieAuth,
133-
zioHttpExampleDigestAuth,
134-
zioHttpExampleOpaqueBearerTokenAuth,
135-
zioHttpExampleJwtBearerTokenAuth,
136-
zioHttpExampleJwtBearerRefreshTokenAuth,
137-
zioHttpExampleOauthBearerTokenAuth,
138-
zioHttpExampleWebauthn,
139-
)
140-
130+
lazy val exampleProjects: Seq[ProjectReference] =
131+
if ("git describe --tags --exact-match".! == 0) Seq.empty[ProjectReference]
132+
else
133+
Seq[ProjectReference](
134+
zioHttpExampleBasicAuth,
135+
zioHttpExampleCookieAuth,
136+
zioHttpExampleDigestAuth,
137+
zioHttpExampleOpaqueBearerTokenAuth,
138+
zioHttpExampleJwtBearerTokenAuth,
139+
zioHttpExampleJwtBearerRefreshTokenAuth,
140+
zioHttpExampleOauthBearerTokenAuth,
141+
zioHttpExampleWebauthn,
142+
)
141143

142144
lazy val aggregatedProjects: Seq[ProjectReference] =
143145
if (Shading.shadingEnabled) {
@@ -182,8 +184,8 @@ lazy val zioHttp = crossProject(JSPlatform, JVMPlatform)
182184
.settings(
183185
autoCompilerPlugins := true,
184186
libraryDependencies ++= unroll,
185-
addCompilerPlugin("com.lihaoyi" %% "unroll-plugin" % "0.1.12")
186-
)
187+
addCompilerPlugin("com.lihaoyi" %% "unroll-plugin" % "0.2.0"),
188+
)
187189
.settings(
188190
libraryDependencies ++= {
189191
CrossVersion.partialVersion(scalaVersion.value) match {

project/Dependencies.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ object Dependencies {
3535
)
3636

3737
val unroll = Seq(
38-
"com.lihaoyi" %% "unroll-annotation" % "0.1.12",
39-
"com.lihaoyi" %% "unroll-plugin" % "0.1.12"
40-
)
38+
"com.lihaoyi" %% "unroll-annotation" % "0.2.0",
39+
"com.lihaoyi" %% "unroll-plugin" % "0.2.0",
40+
)
4141

4242
val zio = "dev.zio" %% "zio" % ZioVersion
4343
val `zio-cli` = "dev.zio" %% "zio-cli" % ZioCliVersion

0 commit comments

Comments
 (0)