Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 4.0.1 #7312

Open
wants to merge 1 commit into
base: release/4.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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/BranchInfo.props
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
<PropertyGroup Condition="'$(IsStableProject)' == 'true'">
<MajorVersion>4</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>0</PatchVersion>
<PatchVersion>1</PatchVersion>
<!-- Set baseline version for stable packages to check for API Compat -->
<PackageValidationBaselineVersion>3.0.0</PackageValidationBaselineVersion>
<PackageValidationBaselineVersion>$(MajorVersion).$(MinorVersion).$([MSBuild]::Subtract($(PatchVersion), 1))</PackageValidationBaselineVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(IsStableProject)' != 'true'">
<MajorVersion>0</MajorVersion>
<MinorVersion>22</MinorVersion>
<PatchVersion>0</PatchVersion>
<PatchVersion>1</PatchVersion>
</PropertyGroup>
</Project>
3 changes: 1 addition & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
https://github.com/dotnet/arcade/blob/c788ffa83b088cafe9dbffc1cbc8155ba88b2553/Documentation/CorePackages/Versioning.md#output
-->
<DotNetUseShippingVersions>true</DotNetUseShippingVersions>
<VersionPrefix>4.0.0</VersionPrefix>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<PreReleaseVersionLabel>servicing</PreReleaseVersionLabel>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<!-- .NET Runtime product dependencies -->
<MicrosoftBclAsyncInterfacesVersion>8.0.0</MicrosoftBclAsyncInterfacesVersion>
Expand Down
3 changes: 1 addition & 2 deletions src/Microsoft.ML.Tokenizers/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@

<PropertyGroup>
<MajorVersion>$([MSBuild]::Subtract($(MajorVersion), 3))</MajorVersion>
<!-- Blank version for now for API compat -->
<PackageValidationBaselineVersion></PackageValidationBaselineVersion>
<PackageValidationBaselineVersion>$(MajorVersion).$(MinorVersion).$([MSBuild]::Subtract($(PatchVersion), 1))</PackageValidationBaselineVersion>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$([MSBuild]::Subtract($(PatchVersion), 1)

This looks ok but I am wondering if we can always use 0 for the patch version here?

</PropertyGroup>

</Project>
12 changes: 0 additions & 12 deletions src/Microsoft.ML/CompatibilitySuppressions.xml

This file was deleted.