diff --git a/_data/releases/latest/c-packages.csv b/_data/releases/latest/c-packages.csv index 273fabff2..4fc2d4748 100644 --- a/_data/releases/latest/c-packages.csv +++ b/_data/releases/latest/c-packages.csv @@ -1,5 +1,5 @@ "Package","VersionGA","VersionPreview","DisplayName","ServiceName","RepoPath","MSDocs","GHDocs","Type","New","PlannedVersions","LatestGADate","FirstGADate","Support","EOLDate","Hide","Replace","ReplaceGuide","MSDocService","ServiceId","Notes" -"az_core","1.5.0","","Core","Other","src/azure/core","","","client","true","","01/11/2023","09/22/2020","active","","","","","","","" +"az_core","1.5.0","","Core","Other","src/azure/core","NA","","client","true","","01/11/2023","09/22/2020","active","","","","","","","" "az_iot_hub","1.5.0","","IoT Hub","IoT Hub","src/azure/iot","NA","https://azuresdkdocs.blob.core.windows.net/$web/c/az_iot/item.Version/index.html","client","true","","01/11/2023","09/22/2020","active","","","","","","","" "az_iot_adu","1.5.0","","IoT Hub - Device Update","Device Update for IoT Hub","src/azure/iot","NA","https://azuresdkdocs.blob.core.windows.net/$web/c/az_iot/item.Version/index.html","client","true","","01/11/2023","09/22/2020","active","","","","","","","" "az_iot_provisioning","1.5.0","","IoT Provisioning","IoT Device Provisioning","src/azure/iot","NA","https://azuresdkdocs.blob.core.windows.net/$web/c/az_iot/item.Version/index.html","client","true","","01/11/2023","09/22/2020","active","","","","","","","" diff --git a/_includes/releases/links.md b/_includes/releases/links.md index 2dde88309..1bace0a03 100644 --- a/_includes/releases/links.md +++ b/_includes/releases/links.md @@ -29,7 +29,6 @@ {% assign msdocs_url = msdocs_url | append: pre_suffix %} {% endif %} {% endif %} - {% assign msdocs_url = msdocs_url | replace: 'item.Version', version %} {% if code_url != "" and code_url != "NA" and msdocs_url != "" and msdocs_url != "NA" %}  |  {% endif %} diff --git a/_includes/releases/variables/c.md b/_includes/releases/variables/c.md index 619c6828b..c10cf08d5 100644 --- a/_includes/releases/variables/c.md +++ b/_includes/releases/variables/c.md @@ -1,6 +1,6 @@ {% assign package_label = "zip" %} {% assign pre_suffix = "" %} {% assign package_url_template = "https://github.com/Azure/azure-sdk-for-c/archive/item.Version.zip" %} -{% assign msdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/c/item.Package/item.Version/index.html" %} + {% assign ghdocs_url_template = "https://azuresdkdocs.blob.core.windows.net/$web/c/item.Package/item.Version/index.html" %} {% assign source_url_template = "https://github.com/Azure/azure-sdk-for-c/tree/item.Version/sdk/item.RepoPath/" %} diff --git a/eng/scripts/Update-Release-Versions.ps1 b/eng/scripts/Update-Release-Versions.ps1 index 2370d9523..0d71725c2 100644 --- a/eng/scripts/Update-Release-Versions.ps1 +++ b/eng/scripts/Update-Release-Versions.ps1 @@ -86,7 +86,7 @@ function CheckOptionalLinks($linkTemplates, $pkg, $skipIfNA = $false) if (!$skipIfNA -or $pkg.MSDocs -eq "") { $preSuffix = GetLinkTemplateValue $linkTemplates "pre_suffix" - $msdocLink = GetLinkTemplateValue $linkTemplates "msdocs_url_template" $pkg.Package $pkg.VersionGA + $msdocLink = GetLinkTemplateValue $linkTemplates "msdocs_url_template" $pkg.Package if (!$pkg.VersionGA -and $pkg.VersionPreview -and $preSuffix) { $msdocLink += $preSuffix