Skip to content

Commit

Permalink
update to SFDC API v61
Browse files Browse the repository at this point in the history
  • Loading branch information
neowit committed Jun 23, 2024
1 parent c35a6bc commit 792889a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ resolvers ++= Seq(
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
)

val sfdcAPIVersion = "58.0.0"
val sfdcAPIVersion = "61.1.0"
//see: https://central.sonatype.com/namespace/com.force.api
libraryDependencies ++= Seq(
"com.force.api" % "force-wsc" % "58.0.0",
"com.force.api" % "force-wsc" % "61.1.0",
"com.force.api" % "force-partner-api" % sfdcAPIVersion,
"com.force.api" % "force-metadata-api" % sfdcAPIVersion,
"com.force.api" % "force-apex-api" % sfdcAPIVersion
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/com/neowit/apex/AppVersion.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import scala.concurrent.{ExecutionContext, Future}

object AppVersion {
val APP_NAME = "tooling-force.com"
val VERSION = "0.5.8.1"
val SFDC_API_VERSION:Double = 58.0
val VERSION = "0.6.1.0"
val SFDC_API_VERSION:Double = 61.0
}
class AppVersion extends ApexAction {
protected override def act()(implicit ec: ExecutionContext): Future[ActionResult] = {
Expand Down

0 comments on commit 792889a

Please sign in to comment.