From ab310b40fcc50582b42e1a7e798adeebae5ff665 Mon Sep 17 00:00:00 2001 From: martinjw <martinwilley@hotmail.com> Date: Sat, 13 Jan 2024 14:28:13 +0100 Subject: [PATCH] Bump version --- CopyToSQLite/Properties/AssemblyInfo.cs | 2 +- DatabaseSchemaReader/DatabaseSchemaReader.csproj | 5 +++-- DatabaseSchemaViewer/Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CopyToSQLite/Properties/AssemblyInfo.cs b/CopyToSQLite/Properties/AssemblyInfo.cs index 48452750..f8e811cf 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.10.0.0")] +[assembly: AssemblyVersion("2.10.1.0")] [assembly: AssemblyFileVersion("2.10.1.0")] \ No newline at end of file diff --git a/DatabaseSchemaReader/DatabaseSchemaReader.csproj b/DatabaseSchemaReader/DatabaseSchemaReader.csproj index 3e33a90d..1dc8a49f 100644 --- a/DatabaseSchemaReader/DatabaseSchemaReader.csproj +++ b/DatabaseSchemaReader/DatabaseSchemaReader.csproj @@ -3,7 +3,7 @@ <PropertyGroup> <Description>Any ADO provider can be read (SqlServer, SqlServer CE 4, MySQL, SQLite, System.Data.OracleClient, ODP, Devart, PostgreSql, DB2...) into a single standard model.</Description> <AssemblyTitle>DatabaseSchemaReader</AssemblyTitle> - <VersionPrefix>2.10.0</VersionPrefix> + <VersionPrefix>2.10.1</VersionPrefix> <Authors>Martin Willey</Authors> <TargetFrameworks>netstandard2.0;netstandard1.5;net45;net40;net35</TargetFrameworks> <GenerateDocumentationFile>true</GenerateDocumentationFile> @@ -30,6 +30,7 @@ 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) 2.10.0: Postgresql: support partial indexes (#140) + 2.10.1: Postgresql: fix partial indexes generation (#140); sql server UDTs bug (#173) </PackageReleaseNotes> <PackageProjectUrl>https://github.com/martinjw/dbschemareader</PackageProjectUrl> <RepositoryType>git</RepositoryType> @@ -44,7 +45,7 @@ <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> - <Version>2.10.0</Version> + <Version>2.10.1</Version> <Configurations>Debug;Release;net45;Net4</Configurations> <PackageLicenseExpression>MS-PL</PackageLicenseExpression> </PropertyGroup> diff --git a/DatabaseSchemaViewer/Properties/AssemblyInfo.cs b/DatabaseSchemaViewer/Properties/AssemblyInfo.cs index 5e1049e4..08c3c204 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.10.0.0")] -[assembly: AssemblyFileVersion("2.10.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("2.10.1.0")] +[assembly: AssemblyFileVersion("2.10.1.0")] \ No newline at end of file