From de97d4bf8ad86223bebf36a1ac5450a8405ba6e4 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Fri, 22 Jul 2022 11:41:30 +0200 Subject: [PATCH 01/16] dep: bump sbt to 1.7.1 Looking at the [commit](https://github.com/lampepfl/dotty/commit/fa063b660cc9920666e4a91f9ce636a441c02b88) that added 1.6.2 I believe I have everything updated that needs to be. I am updating this because it's needed for a test that I'm adding in #15565, but thought it'd be best to do this bump in a separate pr. --- .../src/scala/dotty/communitybuild/projects.scala | 6 +++--- project/build.properties | 2 +- .../sbt-dotty/dotty-knowledge.i17/project/build.properties | 2 +- semanticdb/project/build.properties | 2 +- .../project/build.properties | 2 +- .../sourcepath-with-inline/project/build.properties | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 4784daca6bb5..7f75b9b4a321 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -140,7 +140,7 @@ final case class SbtCommunityProject( case Some(ivyHome) => List(s"-Dsbt.ivy.home=$ivyHome") case _ => Nil extraSbtArgs ++ sbtProps ++ List( - "-sbt-version", "1.6.2", + "-sbt-version", "1.7.1", "-Dsbt.supershell=false", s"-Ddotty.communitybuild.dir=$communitybuildDir", s"--addPluginSbtFile=$sbtPluginFilePath" @@ -507,8 +507,8 @@ object projects: lazy val scalaJava8Compat = SbtCommunityProject( project = "scala-java8-compat", // the fnGen subproject must be built with 2.12.x - sbtTestCommand = s"++2.12.14; ++$compilerVersion; set fnGen/dependencyOverrides := Nil; test", - sbtPublishCommand = s"++2.12.14; ++$compilerVersion; set fnGen/dependencyOverrides := Nil; publishLocal", + sbtTestCommand = s"++2.12.14; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; test", + sbtPublishCommand = s"++2.12.14; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; publishLocal", scalacOptions = Nil // avoid passing Scala 3 options to Scala 2.12 in fnGen subproject ) diff --git a/project/build.properties b/project/build.properties index c8fcab543a9c..22af2628c413 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 diff --git a/sbt-test/sbt-dotty/dotty-knowledge.i17/project/build.properties b/sbt-test/sbt-dotty/dotty-knowledge.i17/project/build.properties index c8fcab543a9c..22af2628c413 100644 --- a/sbt-test/sbt-dotty/dotty-knowledge.i17/project/build.properties +++ b/sbt-test/sbt-dotty/dotty-knowledge.i17/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 diff --git a/semanticdb/project/build.properties b/semanticdb/project/build.properties index c8fcab543a9c..22af2628c413 100644 --- a/semanticdb/project/build.properties +++ b/semanticdb/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 diff --git a/tests/cmdTest-sbt-tests/sourcepath-with-inline-api-hash/project/build.properties b/tests/cmdTest-sbt-tests/sourcepath-with-inline-api-hash/project/build.properties index c8fcab543a9c..22af2628c413 100644 --- a/tests/cmdTest-sbt-tests/sourcepath-with-inline-api-hash/project/build.properties +++ b/tests/cmdTest-sbt-tests/sourcepath-with-inline-api-hash/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 diff --git a/tests/cmdTest-sbt-tests/sourcepath-with-inline/project/build.properties b/tests/cmdTest-sbt-tests/sourcepath-with-inline/project/build.properties index c8fcab543a9c..22af2628c413 100644 --- a/tests/cmdTest-sbt-tests/sourcepath-with-inline/project/build.properties +++ b/tests/cmdTest-sbt-tests/sourcepath-with-inline/project/build.properties @@ -1 +1 @@ -sbt.version=1.6.2 +sbt.version=1.7.1 From e3d552db0130a9bc783dc097af0df695535ab88d Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Fri, 22 Jul 2022 14:22:02 +0200 Subject: [PATCH 02/16] dep: update fs2 submodule This is needed due to some scalablytyped stuff that changed in fs2. Without it, you'll get an error when updating the sbt 1.7.x that scalably typed doesn't support 1.7.x --- community-build/community-projects/fs2 | 2 +- community-build/src/scala/dotty/communitybuild/projects.scala | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/community-build/community-projects/fs2 b/community-build/community-projects/fs2 index 1ba97a221819..a5566a6ff56f 160000 --- a/community-build/community-projects/fs2 +++ b/community-build/community-projects/fs2 @@ -1 +1 @@ -Subproject commit 1ba97a221819aa3d44f3e2e3a3266e1947bce8dc +Subproject commit a5566a6ff56fcba4f50896fdb32d54541f9c9ba5 diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 7f75b9b4a321..5eb05723a187 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -507,8 +507,8 @@ object projects: lazy val scalaJava8Compat = SbtCommunityProject( project = "scala-java8-compat", // the fnGen subproject must be built with 2.12.x - sbtTestCommand = s"++2.12.14; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; test", - sbtPublishCommand = s"++2.12.14; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; publishLocal", + sbtTestCommand = s"++2.12.x; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; test", + sbtPublishCommand = s"++2.12.x; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; publishLocal", scalacOptions = Nil // avoid passing Scala 3 options to Scala 2.12 in fnGen subproject ) From 327662eaea8bbc28dcc4d3062f7c60cdd6bd0469 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Fri, 22 Jul 2022 17:50:47 +0200 Subject: [PATCH 03/16] dep: bump fs2 submodule to include latest commit --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 4d87dd214e9c..fda9c351649c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -200,7 +200,7 @@ url = https://github.com/dotty-staging/scalacheck-effect.git [submodule "community-build/community-projects/fs2"] path = community-build/community-projects/fs2 - url = https://github.com/dotty-staging/fs2.git + url = https://github.com/ckipp01/fs2.git [submodule "community-build/community-projects/libretto"] path = community-build/community-projects/libretto url = https://github.com/dotty-staging/libretto.git From 3c0dcecb344314ab7da759e53f1c6a5d85c49809 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Fri, 22 Jul 2022 19:25:56 +0200 Subject: [PATCH 04/16] dep: move back to staging fs2 --- .gitmodules | 2 +- community-build/community-projects/fs2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index fda9c351649c..4d87dd214e9c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -200,7 +200,7 @@ url = https://github.com/dotty-staging/scalacheck-effect.git [submodule "community-build/community-projects/fs2"] path = community-build/community-projects/fs2 - url = https://github.com/ckipp01/fs2.git + url = https://github.com/dotty-staging/fs2.git [submodule "community-build/community-projects/libretto"] path = community-build/community-projects/libretto url = https://github.com/dotty-staging/libretto.git diff --git a/community-build/community-projects/fs2 b/community-build/community-projects/fs2 index a5566a6ff56f..ac5275baf33b 160000 --- a/community-build/community-projects/fs2 +++ b/community-build/community-projects/fs2 @@ -1 +1 @@ -Subproject commit a5566a6ff56fcba4f50896fdb32d54541f9c9ba5 +Subproject commit ac5275baf33b03da0a461b5de735ee6a1f5a524e From df7bdf97538a75ffb2b184b25d9245cf41dff9d8 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sat, 23 Jul 2022 14:07:31 +0200 Subject: [PATCH 05/16] dep: sync with latest staging http4s --- community-build/community-projects/http4s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/community-projects/http4s b/community-build/community-projects/http4s index 6f22ebe18cd2..c3d46f561ed1 160000 --- a/community-build/community-projects/http4s +++ b/community-build/community-projects/http4s @@ -1 +1 @@ -Subproject commit 6f22ebe18cd262e58cf31c86448891d860b7a03b +Subproject commit c3d46f561ed1026ae54e1acbd5e4730f0498ea93 From 3c08936d049c0fe646320aa3516e91f6be299463 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sat, 23 Jul 2022 17:27:34 +0200 Subject: [PATCH 06/16] dep: sync with latest staging munit --- community-build/community-projects/munit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/community-projects/munit b/community-build/community-projects/munit index 92f3ad9e8261..319e38658131 160000 --- a/community-build/community-projects/munit +++ b/community-build/community-projects/munit @@ -1 +1 @@ -Subproject commit 92f3ad9e8261b4c142a551baaf61ef5fed84d36a +Subproject commit 319e38658131770a2b9bdb3fa28f8d51f4c16557 From cf7d6fc7f21c409e82b55c2085dc51f63fbb4355 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sun, 24 Jul 2022 13:32:40 +0200 Subject: [PATCH 07/16] dep: sync with latest scala-java8-compat This also allows us to get rid of the fnGen stuff and simplify the sbtTestCommand and sbtPublishCommand --- community-build/community-projects/scala-java8-compat | 2 +- .../src/scala/dotty/communitybuild/projects.scala | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/community-build/community-projects/scala-java8-compat b/community-build/community-projects/scala-java8-compat index 57e1f7ccaa67..eb16484fe841 160000 --- a/community-build/community-projects/scala-java8-compat +++ b/community-build/community-projects/scala-java8-compat @@ -1 +1 @@ -Subproject commit 57e1f7ccaa67dcac2b4227ab1a6ee0fcb5f42023 +Subproject commit eb16484fe8410643e157696421eeb79910ba36d5 diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 5eb05723a187..ef71da2f3398 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -506,10 +506,8 @@ object projects: lazy val scalaJava8Compat = SbtCommunityProject( project = "scala-java8-compat", - // the fnGen subproject must be built with 2.12.x - sbtTestCommand = s"++2.12.x; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; test", - sbtPublishCommand = s"++2.12.x; ++$compilerVersion!; set fnGen/dependencyOverrides := Nil; publishLocal", - scalacOptions = Nil // avoid passing Scala 3 options to Scala 2.12 in fnGen subproject + sbtTestCommand = "test", + sbtPublishCommand = "publishLocal", ) lazy val verify = SbtCommunityProject( From d30ad71c4f77a0715ba47c59ab22ff754bdaa2db Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sun, 24 Jul 2022 16:42:45 +0200 Subject: [PATCH 08/16] dep: back up munit a bit to avoid @implicitNotFound test error --- community-build/community-projects/munit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/community-projects/munit b/community-build/community-projects/munit index 319e38658131..e9bb079ba7da 160000 --- a/community-build/community-projects/munit +++ b/community-build/community-projects/munit @@ -1 +1 @@ -Subproject commit 319e38658131770a2b9bdb3fa28f8d51f4c16557 +Subproject commit e9bb079ba7da9486e2b8eef5f72658ea4ce82be3 From 30a387f074a27838dea373a7e734e165b6311f55 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Mon, 25 Jul 2022 08:58:25 +0200 Subject: [PATCH 09/16] dep: sync with latest cats in staging --- community-build/community-projects/cats | 2 +- community-build/src/scala/dotty/communitybuild/projects.scala | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/community-build/community-projects/cats b/community-build/community-projects/cats index 704c7fd5d207..771c6c802f59 160000 --- a/community-build/community-projects/cats +++ b/community-build/community-projects/cats @@ -1 +1 @@ -Subproject commit 704c7fd5d2079854637885514fccb62165e267f7 +Subproject commit 771c6c802f59c72dbc1be1898081c9c882ddfeb0 diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index ef71da2f3398..3eba69af69b4 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -548,8 +548,8 @@ object projects: lazy val cats = SbtCommunityProject( project = "cats", - sbtTestCommand = "set Global/scalaJSStage := FastOptStage;buildJVM;validateAllJS", - sbtPublishCommand = "catsJVM/publishLocal;catsJS/publishLocal", + sbtTestCommand = "set Global/scalaJSStage := FastOptStage;rootJVM/test;rootJS/test", + sbtPublishCommand = "rootJVM/publishLocal;rootJS/publishLocal", dependencies = List(discipline, disciplineMunit, scalacheck, simulacrumScalafixAnnotations), scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Ysafe-init") // disable -Ysafe-init, due to -Xfatal-warning From 3c93ad6c5069fa6a0199db5eb4d3f2d7cd83348a Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Mon, 25 Jul 2022 12:11:10 +0200 Subject: [PATCH 10/16] dep: sync with latest munit-cats-effect and scalacheck --- community-build/community-projects/munit-cats-effect | 2 +- community-build/community-projects/scalacheck | 2 +- .../src/scala/dotty/communitybuild/projects.scala | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/community-build/community-projects/munit-cats-effect b/community-build/community-projects/munit-cats-effect index 248187bec8dc..40e442827669 160000 --- a/community-build/community-projects/munit-cats-effect +++ b/community-build/community-projects/munit-cats-effect @@ -1 +1 @@ -Subproject commit 248187bec8dc540e06950b7faf8d0e0be1ad31b1 +Subproject commit 40e44282766919a105e9dbbccbc3d14b79fee335 diff --git a/community-build/community-projects/scalacheck b/community-build/community-projects/scalacheck index 976db31cd549..7749c38313f9 160000 --- a/community-build/community-projects/scalacheck +++ b/community-build/community-projects/scalacheck @@ -1 +1 @@ -Subproject commit 976db31cd549328167a90ecc6f5f31efa83cd845 +Subproject commit 7749c38313f9deb79368d72f592f7f1e9383620d diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 3eba69af69b4..9d34f4376a17 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -265,9 +265,8 @@ object projects: lazy val scalacheck = SbtCommunityProject( project = "scalacheck", - sbtTestCommand = "jvm/test;js/test", - sbtPublishCommand = "jvm/publishLocal;js/publishLocal", - sbtDocCommand = forceDoc("jvm") + sbtTestCommand = "coreJVM/test;coreJS/test", + sbtPublishCommand = "coreJVM/publishLocal;coreJS/publishLocal" ) lazy val scalatest: SbtCommunityProject = SbtCommunityProject( From e0bb0b7d672009b719fa3ecb70c3b69c8f8a256b Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Mon, 25 Jul 2022 16:46:30 +0200 Subject: [PATCH 11/16] dep: sync with latest discipline and discipline-munit --- community-build/community-projects/discipline | 2 +- community-build/community-projects/discipline-munit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/community-build/community-projects/discipline b/community-build/community-projects/discipline index afd001326789..09c975b18dc0 160000 --- a/community-build/community-projects/discipline +++ b/community-build/community-projects/discipline @@ -1 +1 @@ -Subproject commit afd00132678985341db210b56f3b2ead1a8405c2 +Subproject commit 09c975b18dc0b4e10499fb2922abac82ea8b5252 diff --git a/community-build/community-projects/discipline-munit b/community-build/community-projects/discipline-munit index 38ea89226b8d..4e61f1861956 160000 --- a/community-build/community-projects/discipline-munit +++ b/community-build/community-projects/discipline-munit @@ -1 +1 @@ -Subproject commit 38ea89226b8ddedc891b160f75d57ae5177f19a1 +Subproject commit 4e61f186195660529e7a6f7461b939477735e3f4 From 653d50a535397de7fcfa0b263011d48ebd9b80e0 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Mon, 25 Jul 2022 18:38:26 +0200 Subject: [PATCH 12/16] dep: lock munit at 0.7.29 If not you'll have issues with http4s tests since http4s isn't using the 1.x version of munit yet --- community-build/community-projects/munit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/community-projects/munit b/community-build/community-projects/munit index e9bb079ba7da..92f3ad9e8261 160000 --- a/community-build/community-projects/munit +++ b/community-build/community-projects/munit @@ -1 +1 @@ -Subproject commit e9bb079ba7da9486e2b8eef5f72658ea4ce82be3 +Subproject commit 92f3ad9e8261b4c142a551baaf61ef5fed84d36a From fa9154e1d7a6e3cccb7efb029fbcd88c42a21fd0 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Tue, 26 Jul 2022 07:35:05 +0200 Subject: [PATCH 13/16] dep: sync with 3.x series not main for cats effect --- community-build/community-projects/cats-effect-3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/community-projects/cats-effect-3 b/community-build/community-projects/cats-effect-3 index 3a32c0e5b7b6..e1f969fee802 160000 --- a/community-build/community-projects/cats-effect-3 +++ b/community-build/community-projects/cats-effect-3 @@ -1 +1 @@ -Subproject commit 3a32c0e5b7b61665e5bb94ccf0ed92beb66615dd +Subproject commit e1f969fee802248f848a37af80df099dd8b294d6 From 91a02942a313728b178a0283a322d2774b37ca10 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Tue, 26 Jul 2022 10:54:48 +0200 Subject: [PATCH 14/16] dep: rollback cats-effect and turn off xfatal for it We currently have a mess of different versions and because of it cats-effect is using something deprecated in cats. However we can't bump everything due to other issues, so for a temporary fix try turning off xfatal for htpp4s. --- community-build/community-projects/cats-effect-3 | 2 +- community-build/src/scala/dotty/communitybuild/projects.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/community-build/community-projects/cats-effect-3 b/community-build/community-projects/cats-effect-3 index e1f969fee802..3a32c0e5b7b6 160000 --- a/community-build/community-projects/cats-effect-3 +++ b/community-build/community-projects/cats-effect-3 @@ -1 +1 @@ -Subproject commit e1f969fee802248f848a37af80df099dd8b294d6 +Subproject commit 3a32c0e5b7b61665e5bb94ccf0ed92beb66615dd diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 9d34f4376a17..d84dca2bee47 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -752,7 +752,7 @@ object projects: lazy val http4s = SbtCommunityProject( project = "http4s", - sbtTestCommand = "tests/test; server/test; client/test; ember-core/test; ember-server/test; ember-client/test; circe/test", + sbtTestCommand = """set ThisBuild/scalacOptions -= "-Xfatal-warnings"; tests/test; server/test; client/test; ember-core/test; ember-server/test; ember-client/test; circe/test""", sbtPublishCommand = "publishLocal", scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Ysafe-init"), dependencies = List(cats, catsEffect3, fs2, disciplineMunit, scalacheckEffect) From 7a30d5eee1f89fccde85e75811fafff282cec389 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Tue, 26 Jul 2022 13:03:58 +0200 Subject: [PATCH 15/16] try with `tlFatalWarnings` turned off --- community-build/src/scala/dotty/communitybuild/projects.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index d84dca2bee47..97b5fe15e971 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -752,7 +752,7 @@ object projects: lazy val http4s = SbtCommunityProject( project = "http4s", - sbtTestCommand = """set ThisBuild/scalacOptions -= "-Xfatal-warnings"; tests/test; server/test; client/test; ember-core/test; ember-server/test; ember-client/test; circe/test""", + sbtTestCommand = """set ThisBuild / tlFatalWarnings := false; server/test; client/test; ember-core/test; ember-server/test; ember-client/test; circe/test""", sbtPublishCommand = "publishLocal", scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Ysafe-init"), dependencies = List(cats, catsEffect3, fs2, disciplineMunit, scalacheckEffect) From 13295820a0f10aa920a25a34f41272855f929d82 Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Wed, 27 Jul 2022 07:42:58 +0200 Subject: [PATCH 16/16] dep: lock scalacheck at 1.16.0 Without doing this it was getting stuck in CI --- community-build/community-projects/scalacheck | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/community-projects/scalacheck b/community-build/community-projects/scalacheck index 7749c38313f9..0ac8005753ab 160000 --- a/community-build/community-projects/scalacheck +++ b/community-build/community-projects/scalacheck @@ -1 +1 @@ -Subproject commit 7749c38313f9deb79368d72f592f7f1e9383620d +Subproject commit 0ac8005753ab98b6494fd631502201b97a103638