From 509aaa080efdbf04eb245f189872426f7ee6a3bf Mon Sep 17 00:00:00 2001 From: martinjw Date: Fri, 22 Sep 2023 16:14:50 +0200 Subject: [PATCH] Bump version numbers --- CopyToSQLite/Properties/AssemblyInfo.cs | 4 ++-- DatabaseSchemaReader/DatabaseSchemaReader.csproj | 7 ++++--- DatabaseSchemaReader/Properties/AssemblyInfo.cs | 4 ++-- DatabaseSchemaViewer/Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CopyToSQLite/Properties/AssemblyInfo.cs b/CopyToSQLite/Properties/AssemblyInfo.cs index 55c37f4c..dffd3b5b 100644 --- a/CopyToSQLite/Properties/AssemblyInfo.cs +++ b/CopyToSQLite/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.9.0.0")] -[assembly: AssemblyFileVersion("2.9.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("2.9.1.0")] +[assembly: AssemblyFileVersion("2.9.1.0")] \ No newline at end of file diff --git a/DatabaseSchemaReader/DatabaseSchemaReader.csproj b/DatabaseSchemaReader/DatabaseSchemaReader.csproj index 83631121..3e6759cb 100644 --- a/DatabaseSchemaReader/DatabaseSchemaReader.csproj +++ b/DatabaseSchemaReader/DatabaseSchemaReader.csproj @@ -3,7 +3,7 @@ Any ADO provider can be read (SqlServer, SqlServer CE 4, MySQL, SQLite, System.Data.OracleClient, ODP, Devart, PostgreSql, DB2...) into a single standard model. DatabaseSchemaReader - 2.9.0 + 2.9.1 Martin Willey netstandard2.0;netstandard1.5;net45;net40;net35 true @@ -27,7 +27,8 @@ 2.8.0: Reads User Defined Types (Domain/composite types) 2.8.1: AddColumn can generate invalid sql (#161, thanks @Arnagos) 2.8.2: Fix mysql bool type (#164 , thanks @tonyliving); DdlGeneratorFactory add UseGranularBatching (#168 thanks @whibdev) - 2.9.0: Add extensions on schema for simpler sql generation + 2.9.0: Add extensions on schema for simpler sql generation + 2.9.1: Granular batching for indexes fix (#170), user defined types extensions (#171,thanks @whibdev) https://github.com/martinjw/dbschemareader git https://github.com/martinjw/dbschemareader @@ -41,7 +42,7 @@ false false false - 2.9.0 + 2.9.1 Debug;Release;net45;Net4 MS-PL diff --git a/DatabaseSchemaReader/Properties/AssemblyInfo.cs b/DatabaseSchemaReader/Properties/AssemblyInfo.cs index 3fc5b385..b635b24a 100644 --- a/DatabaseSchemaReader/Properties/AssemblyInfo.cs +++ b/DatabaseSchemaReader/Properties/AssemblyInfo.cs @@ -32,7 +32,7 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.9.0.0")] -[assembly: AssemblyFileVersion("2.9.0.0")] +[assembly: AssemblyVersion("2.9.1.0")] +[assembly: AssemblyFileVersion("2.9.1.0")] [assembly: CLSCompliant(true)] [assembly: InternalsVisibleTo("DatabaseSchemaReaderTest")] \ No newline at end of file diff --git a/DatabaseSchemaViewer/Properties/AssemblyInfo.cs b/DatabaseSchemaViewer/Properties/AssemblyInfo.cs index f76d1f74..b2b425a8 100644 --- a/DatabaseSchemaViewer/Properties/AssemblyInfo.cs +++ b/DatabaseSchemaViewer/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.9.0.0")] -[assembly: AssemblyFileVersion("2.9.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("2.9.1.0")] +[assembly: AssemblyFileVersion("2.9.1.0")] \ No newline at end of file