Skip to content

Commit 5ebc484

Browse files
authored
Merge branch 'master' into enable_master_replace
2 parents 0925d30 + d0dda51 commit 5ebc484

File tree

9 files changed

+26
-11
lines changed

9 files changed

+26
-11
lines changed

eng/pipelines/templates/stages/archetype-cpp-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ parameters:
55
stages:
66
- ${{if and(eq(variables['Build.Reason'], 'Manual'), eq(variables['System.TeamProject'], 'internal'))}}:
77
- ${{ each artifact in parameters.Artifacts }}:
8-
- stage: Release_${{artifact.safeName}}
8+
- stage: Release_${{ replace(artifact.Name, '-', '_') }}
99
displayName: 'Release ${{artifact.name}}'
1010
dependsOn: Build
1111
condition: and(succeeded(), ne(variables['Build.Repository.Name'], 'Azure/azure-sdk-for-cpp'))

eng/scripts/Language-Settings.ps1

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,19 @@ function Get-cpp-PackageInfoFromPackageFile($pkg, $workingDirectory)
2828
}
2929

3030
return New-Object PSObject -Property @{
31-
PackageId $pkgName
32-
PackageVersion $pkgVersion
31+
PackageId = $pkgName
32+
PackageVersion = $pkgVersion
33+
ReleaseTag = "$($pkgName)_$($pkgVersion)"
3334
# Artifact info is always considered deployable for now becasue it is not
3435
# deployed anywhere. Dealing with duplicate tags happens downstream in
3536
# CheckArtifactShaAgainstTagsList
36-
Deployable = $true
37-
ReleaseNotes = $releaseNotes
37+
Deployable = $true
38+
ReleaseNotes = $releaseNotes
3839
}
3940
}
4041

4142
# Stage and Upload Docs to blob Storage
42-
function Publish-cpp-GithubIODocs ()
43+
function Publish-cpp-GithubIODocs ($DocLocation, $PublicArtifactLocation)
4344
{
4445
$packageInfo = (Get-Content (Join-Path $DocLocation 'package-info.json') | ConvertFrom-Json)
4546
$releaseTag = RetrieveReleaseTag "CPP" $PublicArtifactLocation

sdk/core/azure-core/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 1.0.0-beta.2 (Unreleased)
4+
5+
36
## 1.0.0-beta.1 (2020-09-09)
47

58
- Initial release

sdk/core/azure-core/inc/azure/core/version.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define AZURE_CORE_VERSION_MAJOR 1
1414
#define AZURE_CORE_VERSION_MINOR 0
1515
#define AZURE_CORE_VERSION_PATCH 0
16-
#define AZURE_CORE_VERSION_PRERELEASE "beta.1"
16+
#define AZURE_CORE_VERSION_PRERELEASE "beta.2"
1717

1818
namespace Azure { namespace Core {
1919

@@ -52,3 +52,4 @@ namespace Azure { namespace Core {
5252
#undef AZURE_CORE_VERSION_MINOR
5353
#undef AZURE_CORE_VERSION_PATCH
5454
#undef AZURE_CORE_VERSION_PRERELEASE
55+

sdk/storage/azure-storage-blobs/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Release History
22

3-
## 1.0.0-beta.2
3+
## 1.0.0-beta.2 (2020-09-09)
44

55
* Support for Blob Batch
66
* Support for Blob Index
7+
* Release based on azure-core_1.0.0-beta.1
78

89
## 1.0.0-beta.1
910

sdk/storage/azure-storage-common/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## 1.0.0-beta.2
3+
## 1.0.0-beta.2 (2020-09-09)
4+
5+
* Release based on azure-core_1.0.0-beta.1
46

57
## 1.0.0-beta.1
68

sdk/storage/azure-storage-files-datalake/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## 1.0.0-beta.2
3+
## 1.0.0-beta.2 (2020-09-09)
4+
5+
* Release based on azure-core_1.0.0-beta.1
46

57
## 1.0.0-beta.1
68

sdk/storage/azure-storage-files-shares/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Release History
22

3-
## 1.0.0-beta.2
3+
## 1.0.0-beta.2 (2020-09-09)
44

55
* Added File SAS generation support.
6+
* Release based on azure-core_1.0.0-beta.1
67

78
## 1.0.0-preview.1 (Unreleased)
89

sdk/template/azure-template/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77

88
* (Engineer System) Enable master replacement link feature for cpp, attempt 1
99

10+
## 1.0.0-beta.2 (2020-09-09)
11+
12+
* Validate engineering system changes
13+
1014
## 1.0.0-beta.1 (2020-09-01)
1115

1216
* Template package validating release pipeline

0 commit comments

Comments
 (0)