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.4 #183

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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.4
4497f23fdf2260561bb0ee0bb4c60e3c8de50a01
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.4"

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
2 changes: 1 addition & 1 deletion requests/src/requests/Model.scala
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object Compress {
/**
* The equivalent of configuring a [[Requester.apply]] or [[Requester.stream]] call, but without
* invoking it. Useful if you want to further customize it and make the call later via the overloads
* of `apply`/`stream` that take a [[Request]].
* of `apply` /`stream` that take a [[Request]].
*/
case class Request(
url: String,
Expand Down
2 changes: 1 addition & 1 deletion requests/src/requests/Requester.scala
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ case class Requester(verb: String, sess: BaseSession) {
* @param auth
* HTTP authentication you want to use with this request; defaults to none
* @param params
* URL params to pass to this request, for `GET`s and `DELETE`s
* URL params to pass to this request, for `GET` s and `DELETE` s
* @param headers
* Custom headers to use, in addition to the defaults
* @param data
Expand Down