Skip to content

Commit 547dafb

Browse files
committed
Update assembly versions to 1.1.1
1 parent a5a6abc commit 547dafb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Microsoft.EntityFrameworkCore.SqlServer.Design/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#if CSPROJ
88

9-
[assembly: AssemblyVersion("1.1.0.0")]
9+
[assembly: AssemblyVersion("1.1.1.0")]
1010

1111
#endif
1212

src/Microsoft.EntityFrameworkCore.SqlServer/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyMetadata("Serviceable", "True")]
1010
[assembly: DesignTimeProviderServices(
1111
typeName: "Microsoft.EntityFrameworkCore.Scaffolding.Internal.SqlServerDesignTimeServices",
12-
assemblyName: "Microsoft.EntityFrameworkCore.SqlServer.Design, Version=1.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60",
12+
assemblyName: "Microsoft.EntityFrameworkCore.SqlServer.Design, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60",
1313
packageName: "Microsoft.EntityFrameworkCore.SqlServer.Design")]
1414
[assembly: AssemblyCompany("Microsoft Corporation.")]
1515
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]

src/Microsoft.EntityFrameworkCore.Sqlite.Design/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#if CSPROJ
88

9-
[assembly: AssemblyVersion("1.1.0.0")]
9+
[assembly: AssemblyVersion("1.1.1.0")]
1010

1111
#endif
1212

src/Microsoft.EntityFrameworkCore.Sqlite/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyMetadata("Serviceable", "True")]
1010
[assembly: DesignTimeProviderServices(
1111
typeName: "Microsoft.EntityFrameworkCore.Scaffolding.Internal.SqliteDesignTimeServices",
12-
assemblyName: "Microsoft.EntityFrameworkCore.Sqlite.Design, Version=1.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60",
12+
assemblyName: "Microsoft.EntityFrameworkCore.Sqlite.Design, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60",
1313
packageName: "Microsoft.EntityFrameworkCore.Sqlite.Design")]
1414
[assembly: AssemblyCompany("Microsoft Corporation.")]
1515
[assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")]

src/Microsoft.EntityFrameworkCore/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#if CSPROJ
1111

12-
[assembly: AssemblyInformationalVersion("1.1.0-csproj")]
12+
[assembly: AssemblyInformationalVersion("1.1.1-csproj")]
1313

1414
#endif
1515

test/Microsoft.EntityFrameworkCore.Tests/ModelSourceTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void Stores_model_version_information_as_annotation_on_model()
7979
var model = modelSource.GetModel(new Context1(), null,
8080
new LoggingModelValidator(new Logger<LoggingModelValidator>(new LoggerFactory())));
8181

82-
Assert.StartsWith("1.1.0", model.GetProductVersion(), StringComparison.OrdinalIgnoreCase);
82+
Assert.StartsWith("1.1.1", model.GetProductVersion(), StringComparison.OrdinalIgnoreCase);
8383
}
8484

8585
private class Context1 : DbContext

0 commit comments

Comments
 (0)