Skip to content

Commit

Permalink
Update branding to 9.0.1 (#35049)
Browse files Browse the repository at this point in the history
Co-authored-by: maumar <[email protected]>
  • Loading branch information
vseanreesermsft and maumar authored Nov 6, 2024
1 parent a2f51ed commit 01ccb27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup Label="Version settings">
<VersionPrefix>9.0.0</VersionPrefix>
<VersionPrefix>9.0.1</VersionPrefix>
<PreReleaseVersionLabel>rtm</PreReleaseVersionLabel>
<PreReleaseVersionIteration>
</PreReleaseVersionIteration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ FROM [__EFMigrationsHistory]
ORDER BY [MigrationId];
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000000_Empty', N'9.0.0');
VALUES (N'00000000000000_Empty', N'9.0.1');
--Before
Expand Down Expand Up @@ -798,12 +798,12 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
END
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000001_Migration1', N'9.0.0');
VALUES (N'00000000000001_Migration1', N'9.0.1');
--After
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000002_Migration2', N'9.0.0');
VALUES (N'00000000000002_Migration2', N'9.0.1');
DECLARE @result int;
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
Expand Down Expand Up @@ -867,7 +867,7 @@ FROM [__EFMigrationsHistory]
ORDER BY [MigrationId];
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000000_Empty', N'9.0.0');
VALUES (N'00000000000000_Empty', N'9.0.1');
--Before
Expand Down Expand Up @@ -910,12 +910,12 @@ CONSTRAINT [PK_Blogs] PRIMARY KEY ([Id])
END
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000001_Migration1', N'9.0.0');
VALUES (N'00000000000001_Migration1', N'9.0.1');
--After
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'00000000000002_Migration2', N'9.0.0');
VALUES (N'00000000000002_Migration2', N'9.0.1');
DECLARE @result int;
EXEC @result = sp_releaseapplock @Resource = '__EFMigrationsLock', @LockOwner = 'Session';
Expand Down

0 comments on commit 01ccb27

Please sign in to comment.