From 57e2dfe70cfb82d87fc0cb118bc9269380a60eaf Mon Sep 17 00:00:00 2001 From: Vitalii Fedorchenko Date: Sun, 31 May 2020 17:58:38 +0300 Subject: [PATCH] Version 1.2.0 bump --- src/NReco.Data/NReco.Data.csproj | 14 +++++--------- src/NReco.Data/Properties/AssemblyInfo.cs | 4 ++-- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/src/NReco.Data/NReco.Data.csproj b/src/NReco.Data/NReco.Data.csproj index 5941150..d824ec3 100644 --- a/src/NReco.Data/NReco.Data.csproj +++ b/src/NReco.Data/NReco.Data.csproj @@ -5,7 +5,7 @@ Micro-ORM with abstract queries and SQL generation for any ADO.NET connector. Copyright (c) 2016-2020 Vitalii Fedorchenko NReco.Data - 1.1.1 + 1.2.0 Vitalii Fedorchenko netstandard2.0;net45 true @@ -15,6 +15,10 @@ Source code and examples: https://github.com/nreco/data API reference: https://www.nrecosite.com/doc/NReco.Data/ +v.1.2.0 changes: +- added simple aggregate queries with QAggregateField #60 +- fixed issue with RelexBuilder and QVar #61 + v.1.1.1 changes: - fixed issue with DbDataAdapter.Update for RecordSet when query contains parameters that are not mapped to Row columns #55 @@ -31,14 +35,6 @@ v.1.0.5 changes: - ability to specify ApplyOffset only for concrete select (issue #46) - add support of nullable types and handling of nulls for non-nullable in DataReaderResult.Single<T> (issue #47) -v.1.0.4 changes: -- added DbDataAdapter.Select overload that accepts FormattableString (like in EF Core) -- netstandard2.0 build -- added DataReaderResult.ToDataTable and DbDataAdapter.SelectQuery.ToDataTable methods (net45/netstandard2.0) - -v.1.0.3 changes: -- Changed DbParameter to IDbDataParameter in CommandParameter constructor -- Added RecordSet.FromReader overload that accepts limit parameter https://www.nrecosite.com/img/nreco-logo-200.png https://www.nrecosite.com/dalc_net.aspx diff --git a/src/NReco.Data/Properties/AssemblyInfo.cs b/src/NReco.Data/Properties/AssemblyInfo.cs index 2ce2c6d..94ecd27 100644 --- a/src/NReco.Data/Properties/AssemblyInfo.cs +++ b/src/NReco.Data/Properties/AssemblyInfo.cs @@ -26,5 +26,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("1.1.1.0")] -[assembly: AssemblyFileVersion("1.1.1.0")] +[assembly: AssemblyVersion("1.2.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")]