@@ -142,7 +142,7 @@ stages:
142142 $ArtifactsList | Format-Table -Property GroupId, Name | Out-String | Write-Host
143143 python --version
144144 foreach($artifact in $ArtifactsList) {
145- python eng/versioning/set_versions.py --build-type ${{parameters.SDKType}} --vv --ai $($artifact.name) --gi $($artifact.groupId)
145+ python eng/versioning/set_versions.py --verify-version --artifact-id $($artifact.name) --group-id $($artifact.groupId)
146146 }
147147 displayName: 'Verify artifact versions for release'
148148
@@ -172,7 +172,7 @@ stages:
172172 ArtifactLocation : $(Pipeline.Workspace)/packages-signed
173173 # Given a list of libraries to release, verify that the list of libraries has full transitive closure.
174174 # This prevents us from releasing a library whose dependency is not being released. UberJar needs to be
175- # be passed in, we skip check on UberJars but we still do need to fail correctly if the user didn't
175+ # passed in, we skip check on UberJars, but we still do need to fail correctly if the user didn't
176176 # select any artifacts to be released.
177177 - task : PowerShell@2
178178 displayName : Verify Release Set
@@ -316,13 +316,13 @@ stages:
316316 $ArtifactsList | Format-Table -Property GroupId, Name | Out-String | Write-Host
317317 python --version
318318 foreach($artifact in $ArtifactsList) {
319- python eng/versioning/set_versions.py --build-type ${{ parameters.SDKType }} -- increment-version --ai $($artifact.name) --gi $($artifact.groupId)
319+ python eng/versioning/set_versions.py --increment-version --artifact-id $($artifact.name) --group-id $($artifact.groupId)
320320 }
321321 displayName: Increment package versions
322322
323323 - script : |
324324 python --version
325- python eng/versioning/update_versions.py --update-type library --build-type ${{ parameters.SDKType }} --avi --sr
325+ python eng/versioning/update_versions.py --auto-version-increment --skip-readme
326326 displayName: Update pom files for incremented versions
327327
328328 - template : /eng/common/pipelines/templates/steps/create-pull-request.yml
0 commit comments