Skip to content

Commit

Permalink
Ensuring that Pulumi automation api is minimum 3.0.0 CLI version
Browse files Browse the repository at this point in the history
  • Loading branch information
stack72 committed Mar 24, 2021
1 parent 9668cd2 commit ae4d1a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.proj
Expand Up @@ -272,7 +272,7 @@

<!-- This is where we build and install the NodeJS SDK -->
<Target Name="BuildTests"
DependsOnTargets="TestDependencies;TestBuild">
DependsOnTargets="BuildNodeJSSDK;TestDependencies;TestBuild">
</Target>

<Target Name="TestDependencies">
Expand Down
4 changes: 2 additions & 2 deletions sdk/go/auto/minimum_version.go
Expand Up @@ -17,7 +17,7 @@ package auto
import "github.com/blang/semver"

var minimumVersion = semver.Version{
Major: 2,
Minor: 21,
Major: 3,
Minor: 0,
Patch: 0,
}
2 changes: 1 addition & 1 deletion sdk/nodejs/automation/minimumVersion.ts
Expand Up @@ -14,4 +14,4 @@

import * as semver from "semver";

export const minimumVersion = new semver.SemVer("v2.21.0");
export const minimumVersion = new semver.SemVer("v3.0.0");
2 changes: 1 addition & 1 deletion sdk/python/lib/pulumi/automation/_minimum_version.py
Expand Up @@ -14,4 +14,4 @@

from semver import VersionInfo

_MINIMUM_VERSION = VersionInfo.parse("2.21.0")
_MINIMUM_VERSION = VersionInfo.parse("3.0.0")

0 comments on commit ae4d1a4

Please sign in to comment.