Skip to content

Update sbt-ci-release to 1.11.1 #274

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

Merged
merged 2 commits into from
Jun 3, 2025
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
4 changes: 0 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ inThisBuild(
)
)

// Sonatype publish options
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"

addCommandAlias("prepare", "fix; fmt")
addCommandAlias("check", "fixCheck; fmtCheck")
addCommandAlias("fmt", "all scalafmtSbt scalafmtAll")
Expand Down
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.3")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.7.1")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ object UrlDetectorOptions {
/** Checks for bracket characters and more importantly quotes to start and end strings. */
case object Json extends UrlDetectorOptions

/** Checks JSON format or but also looks for a single quote. */
/** Checks JSON format but also looks for a single quote. */
case object Javascript extends UrlDetectorOptions

/**
Expand All @@ -57,7 +57,7 @@ object UrlDetectorOptions {
*/
case object Xml extends UrlDetectorOptions

/** Checks all of the rules besides brackets. This is XML but also can contain Javascript. */
/** Checks all the rules besides brackets. This is XML but also can contain JavaScript. */
case object Html extends UrlDetectorOptions

/** Checks for single level domains as well. Ex: go/, http://localhost */
Expand Down