Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eng/pipelines/onebranch/variables/common-variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variables:
- name: Minor
value: '1'
- name: Patch
value: '6'
value: '7'

- name: NugetPackageVersion
value: '$(Major).$(Minor).$(Patch)'
Expand All @@ -41,7 +41,7 @@ variables:
# maintain this variable such that these testing preview builds receive newer version numbers
# than previous builds.
- name: PreviewNugetPackageVersion
value: 6.1.7-preview1
value: 6.1.8-preview1

# GOTCHA: We're intentionally omitting the '.' between Minor and Patch because the BuildNumber
# already contains a '.' and assembly file versions must only contain a maximum of three '.'
Expand All @@ -68,7 +68,7 @@ variables:
- name: akvVersionMinor
value: '1'
- name: akvVersionPatch
value: '3'
Comment thread
benrr101 marked this conversation as resolved.
value: '4'
- name: akvVersionPreview
value: ''

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</When>
<Otherwise>
<PropertyGroup>
<MdsVersion>6.1.5</MdsVersion>
<MdsVersion>6.1.6</MdsVersion>
</PropertyGroup>
</Otherwise>
</Choose>
Expand Down
2 changes: 1 addition & 1 deletion tools/props/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project ToolsVersion="Current" DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MdsVersionDefault>6.1.6</MdsVersionDefault>
<MdsVersionDefault>6.1.7</MdsVersionDefault>
<BuildNumber Condition="'$(BuildNumber)' == ''">0</BuildNumber>

<!--
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyStoreProvider.SqlColumnEncrypti
<tags>sqlclient microsoft.data.sqlclient azurekeyvaultprovider akvprovider alwaysencrypted</tags>
<dependencies>
<group targetFramework="net462">
<dependency id="Microsoft.Data.SqlClient" version="[6.1.6,7.0.0)" />
Comment thread
benrr101 marked this conversation as resolved.
<dependency id="Microsoft.Data.SqlClient" version="[6.1.7,7.0.0)" />
<dependency id="Azure.Core" version="1.50.0" />
<dependency id="Azure.Security.KeyVault.Keys" version="4.8.0" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="8.0.1" />
</group>
<group targetFramework="net8.0">
<dependency id="Microsoft.Data.SqlClient" version="[6.1.6,7.0.0)" />
<dependency id="Microsoft.Data.SqlClient" version="[6.1.7,7.0.0)" />
<dependency id="Azure.Core" version="1.50.0" />
<dependency id="Azure.Security.KeyVault.Keys" version="4.8.0" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="8.0.1" />
</group>
<group targetFramework="net9.0">
<dependency id="Microsoft.Data.SqlClient" version="[6.1.6,7.0.0)" />
<dependency id="Microsoft.Data.SqlClient" version="[6.1.7,7.0.0)" />
<dependency id="Azure.Core" version="1.50.0" />
<dependency id="Azure.Security.KeyVault.Keys" version="4.8.0" />
<dependency id="Microsoft.Extensions.Caching.Memory" version="9.0.11" />
Expand Down
Loading