@@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
49
49
val sharedSettings = Seq (
50
50
name := " scalacheck-1.15" ,
51
51
organization := " org.scalatestplus" ,
52
- version := " 3.2.8 .0" ,
52
+ version := " 3.2.9 .0" ,
53
53
homepage := Some (url(" https://github.com/scalatest/scalatestplus-scalacheck" )),
54
54
licenses := List (" Apache-2.0" -> url(" http://www.apache.org/licenses/LICENSE-2.0" )),
55
55
developers := List (
@@ -68,11 +68,11 @@ val sharedSettings = Seq(
68
68
),
69
69
resolvers += " Sonatype OSS Snapshots" at " https://oss.sonatype.org/content/repositories/snapshots" ,
70
70
libraryDependencies ++= Seq (
71
- " org.scalatest" %%% " scalatest-core" % " 3.2.8 " ,
72
- " org.scalacheck" %%% " scalacheck" % " 1.15.3 " ,
73
- " org.scalatest" %%% " scalatest-shouldmatchers" % " 3.2.8 " % " test" ,
74
- " org.scalatest" %%% " scalatest-funspec" % " 3.2.8 " % " test" ,
75
- " org.scalatest" %%% " scalatest-funsuite" % " 3.2.8 " % " test"
71
+ " org.scalatest" %%% " scalatest-core" % " 3.2.9 " ,
72
+ " org.scalacheck" %%% " scalacheck" % " 1.15.4 " ,
73
+ " org.scalatest" %%% " scalatest-shouldmatchers" % " 3.2.9 " % " test" ,
74
+ " org.scalatest" %%% " scalatest-funspec" % " 3.2.9 " % " test" ,
75
+ " org.scalatest" %%% " scalatest-funsuite" % " 3.2.9 " % " test"
76
76
),
77
77
// skip dependency elements with a scope
78
78
pomPostProcess := { (node : XmlNode ) =>
@@ -117,15 +117,15 @@ val sharedSettings = Seq(
117
117
(sourceDirectory in Compile ).value,
118
118
name.value),
119
119
scalacOptions in (Compile , doc) := {
120
- if (scalaBinaryVersion.value startsWith " 3.0 " )
120
+ if (scalaBinaryVersion.value startsWith " 3" )
121
121
Seq .empty
122
122
else
123
123
Seq (" -doc-title" , s " ScalaTest + ScalaCheck ${version.value}" ,
124
124
" -sourcepath" , baseDirectory.value.getParentFile().getAbsolutePath(),
125
125
" -doc-source-url" , s " https://github.com/scalatest/releases-source/blob/main/scalatestplus-scalacheck/ ${version.value}€{FILE_PATH}.scala " )
126
126
},
127
127
publishArtifact in (Compile , packageDoc) := {
128
- if (scalaBinaryVersion.value startsWith " 3. " )
128
+ if (scalaBinaryVersion.value startsWith " 3" )
129
129
false // Temporary disable publishing of doc in dotty, can't get it to build.
130
130
else
131
131
true
@@ -157,7 +157,7 @@ lazy val scalatestPlusScalaCheck =
157
157
)
158
158
)
159
159
.jsSettings(
160
- crossScalaVersions := List (" 2.12.13" , defaultScalaVersion, " 3.0.0-RC3 " ),
160
+ crossScalaVersions := List (" 2.12.13" , defaultScalaVersion, " 3.0.0" ),
161
161
sourceGenerators in Compile += {
162
162
Def .task {
163
163
GenResourcesJSVM .genResources((sourceManaged in Compile ).value / " org" / " scalatestplus" / " scalacheck" , version.value, scalaVersion.value) ++
@@ -166,7 +166,7 @@ lazy val scalatestPlusScalaCheck =
166
166
}
167
167
)
168
168
.jvmSettings(
169
- crossScalaVersions := List (" 2.12.13" , defaultScalaVersion, " 3.0.0-RC3 " ),
169
+ crossScalaVersions := List (" 2.12.13" , defaultScalaVersion, " 3.0.0" ),
170
170
Test / scalacOptions ++= (if (isDotty.value) Seq (" -language:implicitConversions" ) else Nil ),
171
171
sourceGenerators in Compile += {
172
172
Def .task {
0 commit comments