Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sbt-typelevel, sbt-typelevel-site to 0.7.0 #417

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ inThisBuild(
"modules-ignore" -> "docs_2.12 docs_2.13 docs_3",
"configs-ignore" -> "compile-time scala-doc-tool scala-tool test"
)
)
).copy(cond = Some("github.event_name != 'pull_request'"))
),
cond = Some("github.event_name != 'pull_request'")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WorkflowJob is no longer a case class so we don't have a copy method. I'm entirely sure why we were using the copy so I might be accidentally breaking something else

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think maybe once upon a time this wasn't operating on a freshly constructed value. It seems safe.

)
)
)
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val typelevelV = "0.6.7"
val typelevelV = "0.7.0"

addSbtPlugin("org.typelevel" % "sbt-typelevel" % typelevelV)
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % typelevelV)