From 01ccb27d7588e1a13ee3fe02bd64d1868a0481b9 Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Wed, 6 Nov 2024 12:31:35 -0800 Subject: [PATCH] Update branding to 9.0.1 (#35049) Co-authored-by: maumar --- eng/Versions.props | 2 +- .../MigrationsInfrastructureSqlServerTest.cs | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index a2522c922e7..e94d2935136 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -1,6 +1,6 @@ - 9.0.0 + 9.0.1 rtm diff --git a/test/EFCore.SqlServer.FunctionalTests/Migrations/MigrationsInfrastructureSqlServerTest.cs b/test/EFCore.SqlServer.FunctionalTests/Migrations/MigrationsInfrastructureSqlServerTest.cs index 5399e2b5766..4a9e294eeb1 100644 --- a/test/EFCore.SqlServer.FunctionalTests/Migrations/MigrationsInfrastructureSqlServerTest.cs +++ b/test/EFCore.SqlServer.FunctionalTests/Migrations/MigrationsInfrastructureSqlServerTest.cs @@ -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 @@ -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'; @@ -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 @@ -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';