Skip to content

Commit 9a24625

Browse files
authored
Update sbt-ci-release to 1.11.1 (#274)
1 parent 19d53c0 commit 9a24625

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

build.sbt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ inThisBuild(
2626
)
2727
)
2828

29-
// Sonatype publish options
30-
sonatypeCredentialHost := "s01.oss.sonatype.org"
31-
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
32-
3329
addCommandAlias("prepare", "fix; fmt")
3430
addCommandAlias("check", "fixCheck; fmtCheck")
3531
addCommandAlias("fmt", "all scalafmtSbt scalafmtAll")

project/plugin.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
22
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.3")
3-
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.3")
3+
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
44
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.7.1")
55
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
66
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")

src/main/scala/io/lambdaworks/detection/UrlDetectorOptions.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ object UrlDetectorOptions {
4848
/** Checks for bracket characters and more importantly quotes to start and end strings. */
4949
case object Json extends UrlDetectorOptions
5050

51-
/** Checks JSON format or but also looks for a single quote. */
51+
/** Checks JSON format but also looks for a single quote. */
5252
case object Javascript extends UrlDetectorOptions
5353

5454
/**
@@ -57,7 +57,7 @@ object UrlDetectorOptions {
5757
*/
5858
case object Xml extends UrlDetectorOptions
5959

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

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

0 commit comments

Comments
 (0)