|
4 | 4 | <TargetFramework>netstandard1.5</TargetFramework>
|
5 | 5 | <GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
6 | 6 | <PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
|
7 |
| - <Version>1.9.11</Version> |
| 7 | + <Version>1.10.0</Version> |
8 | 8 | <Authors>Michael Camara Pendon</Authors>
|
9 | 9 | <Company>RepoDb</Company>
|
10 | 10 | <Product>RepoDb</Product>
|
11 | 11 | <Description>A hybrid ORM library for .NET.</Description>
|
12 |
| - <Copyright>Copyright © 2018</Copyright> |
13 |
| - <PackageTags>orm sql repo repodb repository</PackageTags> |
14 |
| - <PackageReleaseNotes>RepoDb v1.9.11: |
15 |
| -- Stable release. |
16 |
| -- Enhancement: Check current transaction (System.Transactions.Transaction.Current) before applying an explicit System.Data.IDbTransaction object. #279 |
17 |
| -- Enhancement: Table Hints is not passing properly in the BatchQuery. #283</PackageReleaseNotes> |
| 12 | + <Copyright>Copyright © 2019</Copyright> |
| 13 | + <PackageTags>orm orm-framework orm-library hybrid-orm</PackageTags> |
| 14 | + <PackageReleaseNotes>RepoDb v1.10.0: |
| 15 | +- Breaking changes from the previous versions. |
| 16 | +- This release contains major code refactoring for performance optimization purposes. |
| 17 | +- Feature: Introduced the support 'IDbSetting'. Used for other data providers extensibility complete support. |
| 18 | +- Feature: Introduced 'DbSettingMapper' class. |
| 19 | +- Feature: Supported 'Upsert' operations (abstracted with 'Merge' operation) for the data providers that does not support multi-statement execution and 'MERGE' command. |
| 20 | +- Feature: Added support to 'Average' and 'AverageAll' (with its Async version). |
| 21 | +- Feature: Added support to 'Exists' (with its Async version). |
| 22 | +- Feature: Added support to 'Max' and 'MaxAll' (with its Async version). |
| 23 | +- Feature: Added support to 'Min' and 'MinAll' (with its Async version). |
| 24 | +- Feature: Added support to 'Sum' and 'SumAll' (with its Async version). |
| 25 | +- Feature: Create an extended method 'DbConnection.GetLastInsertedIdentity()' for other data providers extensibility complete support. |
| 26 | +- Enhancement: Introduced 'QueryGroup.IsForUpdate()' method. |
| 27 | +- Enhancement: Splitted the 'SqlServerStatementBuilder' to a 'BaseStatementBuilder'. Further supports for other data providers base statement building. |
| 28 | +- Enhancement: Supported 'IResolver' for 7 generic types. |
| 29 | +- Refactoring: Renamed the 'SqlDbHelper' to 'SqlServerDbHelper'. |
| 30 | +- Refactoring: Renamed the 'SqlStatementBuilder' to 'SqlServerStatementBuilder'. |
| 31 | +- Test: Added an extensive Unit/Integration Tests for Average, Exists, Max, Min, Sum (and all its Async operations). |
| 32 | +- Test: Added an extensive Unit Tests for 'QueryGroup.GetString()' and 'QueryField.GetString()'. |
| 33 | +- Bug: Where expression using IEnumerable's contains throws error when using inherited class property #301</PackageReleaseNotes> |
18 | 34 | <PackageProjectUrl>https://github.com/mikependon/RepoDb</PackageProjectUrl>
|
19 | 35 | <PackageLicenseUrl>https://github.com/mikependon/RepoDb/blob/master/LICENSE.txt</PackageLicenseUrl>
|
20 | 36 | <RepositoryUrl>https://github.com/mikependon/RepoDb</RepositoryUrl>
|
21 | 37 | <RepositoryType>Github</RepositoryType>
|
22 | 38 | <NeutralLanguage>en-US</NeutralLanguage>
|
23 | 39 | <PostBuildEvent></PostBuildEvent>
|
24 | 40 | <PreBuildEvent></PreBuildEvent>
|
25 |
| - <AssemblyVersion>1.9.11.0</AssemblyVersion> |
26 |
| - <FileVersion>1.9.11.0</FileVersion> |
| 41 | + <AssemblyVersion>1.10.0.0</AssemblyVersion> |
| 42 | + <FileVersion>1.10.0.0</FileVersion> |
27 | 43 | </PropertyGroup>
|
28 | 44 |
|
29 | 45 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
0 commit comments