Skip to content

Commit

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

val sfdcAPIVersion = "50.0.0"
val sfdcAPIVersion = "51.2.0"
libraryDependencies ++= Seq(
"com.force.api" % "force-wsc" % "50.0.0",
"com.force.api" % "force-wsc" % "51.2.0",
"com.force.api" % "force-partner-api" % sfdcAPIVersion,
"com.force.api" % "force-metadata-api" % sfdcAPIVersion,
"com.force.api" % "force-apex-api" % sfdcAPIVersion
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/neowit/apex/AppVersion.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import scala.concurrent.{ExecutionContext, Future}

object AppVersion {
val APP_NAME = "tooling-force.com"
val VERSION = "0.5.0.0"
val VERSION = "0.5.1.0"
}
class AppVersion extends ApexAction {
protected override def act()(implicit ec: ExecutionContext): Future[ActionResult] = {
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/com/neowit/utils/Config.scala
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ regardless of whether it is also specified in config file or not

class Config(val basicConfig: BasicConfig) extends OAuth2JsonSupport with Logging{

val apiVersion:Double = 50.0
val apiVersion:Double = 51.0

//make BasicConfig methods available in Config
def load(arglist: List[String]): Unit = {
Expand Down

0 comments on commit 311b186

Please sign in to comment.