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 scalafmt-core to 3.8.5 #185

Closed
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
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.5
be725417401e3366c5cced46684003fce37f9194
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.3"
version = "3.8.5"

maxColumn = 100
runner.dialect = scala213
Expand Down
8 changes: 4 additions & 4 deletions build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val scalaVersions = List("2.12.20", "2.13.15", "3.3.4") ++ scalaNextVersion
val scalaNativeVer = "0.5.6"

trait MimaCheck extends Mima {
def mimaPreviousVersions = Seq("0.6.9", "0.7.0", "0.7.1", "0.8.0","0.8.2", "0.9.0").distinct
def mimaPreviousVersions = Seq("0.6.9", "0.7.0", "0.7.1", "0.8.0", "0.8.2", "0.9.0").distinct

override def mimaBinaryIssueFilters = Seq(
ProblemFilter.exclude[ReversedMissingMethodProblem]("requests.BaseSession.send"),
Expand All @@ -36,8 +36,8 @@ trait RequestsPublishModule extends PublishModule with MimaCheck {
licenses = Seq(License.MIT),
versionControl = VersionControl.github("com-lihaoyi", "requests-scala"),
developers = Seq(
Developer("lihaoyi", "Li Haoyi", "https://github.com/lihaoyi")
)
Developer("lihaoyi", "Li Haoyi", "https://github.com/lihaoyi"),
),
)

def ivyDeps = Agg(ivy"com.lihaoyi::geny::1.1.1")
Expand All @@ -52,7 +52,7 @@ trait RequestsTestModule extends TestModule.Utest {
def ivyDeps = Agg(
ivy"com.lihaoyi::utest::0.7.10",
ivy"com.lihaoyi::ujson::1.3.13",
ivy"com.dimafeng::testcontainers-scala-core:0.41.3"
ivy"com.dimafeng::testcontainers-scala-core:0.41.3",
)
}

Expand Down