Skip to content

Commit

Permalink
Update release dates in CHANGELOGs (#2185)
Browse files Browse the repository at this point in the history
* Update release dates in CHANGELOGs

* Work around #2186
  • Loading branch information
heaths authored Feb 18, 2025
1 parent 1936f57 commit 5af5626
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 29 deletions.
49 changes: 25 additions & 24 deletions eng/scripts/Analyze-Code.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -37,27 +37,28 @@ Invoke-LoggedCommand "cargo +$Toolchain doc --workspace --no-deps --all-features

# Verify package dependencies

$verifyDependenciesScript = Join-Path $RepoRoot 'eng' 'scripts' 'verify-dependencies.rs' -Resolve

if (!$SkipPackageAnalysis) {
if (!(Test-Path $PackageInfoDirectory)) {
Write-Error "Package info path '$PackageInfoDirectory' does not exist."
exit 1
}

$packagesToTest = Get-ChildItem $PackageInfoDirectory -Filter "*.json" -Recurse
| Get-Content -Raw
| ConvertFrom-Json

Push-Location
try {
foreach ($package in $packagesToTest) {
Set-Location (Join-Path $RepoRoot $package.DirectoryPath)
Write-Host "Analyzing package: '$($package.Name)' in directory: '$($package.DirectoryPath)'`n"
Invoke-LoggedCommand "cargo +nightly -Zscript $verifyDependenciesScript"
}
}
finally {
Pop-Location
}
}
# BUGBUG: https://github.com/Azure/azure-sdk-for-rust/issues/2186
# $verifyDependenciesScript = Join-Path $RepoRoot 'eng' 'scripts' 'verify-dependencies.rs' -Resolve
#
# if (!$SkipPackageAnalysis) {
# if (!(Test-Path $PackageInfoDirectory)) {
# Write-Error "Package info path '$PackageInfoDirectory' does not exist."
# exit 1
# }
#
# $packagesToTest = Get-ChildItem $PackageInfoDirectory -Filter "*.json" -Recurse
# | Get-Content -Raw
# | ConvertFrom-Json
#
# Push-Location
# try {
# foreach ($package in $packagesToTest) {
# Set-Location (Join-Path $RepoRoot $package.DirectoryPath)
# Write-Host "Analyzing package: '$($package.Name)' in directory: '$($package.DirectoryPath)'`n"
# Invoke-LoggedCommand "cargo +nightly -Zscript $verifyDependenciesScript"
# }
# }
# finally {
# Pop-Location
# }
# }
2 changes: 1 addition & 1 deletion sdk/core/azure_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 0.22.0 (2025-02-13)
## 0.22.0 (2025-02-18)

### Features Added

Expand Down
7 changes: 7 additions & 0 deletions sdk/core/azure_core_amqp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 0.1.0 (2025-02-18)

### Features Added

- Initial supported release.
2 changes: 1 addition & 1 deletion sdk/eventhubs/azure_messaging_eventhubs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 0.1.0 (2025-02-13)
## 0.1.0 (2025-02-18)

### Features Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/identity/azure_identity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 0.22.0 (2025-02-13)
## 0.22.0 (2025-02-18)

### Features Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure_security_keyvault_keys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 0.1.0 (2025-02-13)
## 0.1.0 (2025-02-18)

### Features Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure_security_keyvault_secrets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 0.1.0 (2025-02-13)
## 0.1.0 (2025-02-18)

### Features Added

Expand Down
7 changes: 7 additions & 0 deletions sdk/typespec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 0.2.0 (2025-02-18)

### Features Added

- Initial supported release.
7 changes: 7 additions & 0 deletions sdk/typespec/typespec_client_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 0.1.0 (2025-02-18)

### Features Added

- Initial supported release.
7 changes: 7 additions & 0 deletions sdk/typespec/typespec_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release History

## 0.1.0 (2025-02-18)

### Features Added

- Initial supported release.

0 comments on commit 5af5626

Please sign in to comment.