Commit 6d589f05 authored by Marc Gravell's avatar Marc Gravell

Metadata for 1.20 release

parent a55d2b90
...@@ -32,6 +32,5 @@ ...@@ -32,6 +32,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.12.1.1")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.12.1.1")]
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.0")] [assembly: AssemblyVersion("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")] [assembly: AssemblyFileVersion("0.1.0.0")]
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
\ No newline at end of file
...@@ -31,6 +31,5 @@ ...@@ -31,6 +31,5 @@
// //
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.20.0.0")]
[assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.20.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata schemaVersion="2"> <metadata schemaVersion="2">
<id>Dapper</id> <id>Dapper</id>
<version>1.13</version> <version>1.20</version>
<title>Dapper dot net</title> <title>Dapper dot net</title>
<authors>Sam Saffron,Marc Gravell</authors> <authors>Sam Saffron,Marc Gravell</authors>
<owners>Sam Saffron,Marc Gravell</owners> <owners>Sam Saffron,Marc Gravell</owners>
...@@ -19,6 +19,10 @@ ...@@ -19,6 +19,10 @@
<frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.0-Client, .NETFramework4.0" /> <frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.0-Client, .NETFramework4.0" />
</frameworkAssemblies> </frameworkAssemblies>
<releaseNotes> <releaseNotes>
* 1.20 - Improved async support in .NET 4.5 (lots of contributions from users here, including JasonPunyon, kwaclaw, tugberkugurlu, and mgravell);
* Now supports literal replacement via {=foo}; new ExecuteReader method (via JJoe2); support for ICustomQueryParameter
* dictionary members (via Blackjacketmack); culture sensitivity (via tms); fixes for time parameters (via olegKoshmeliuk);
* and a range of additional tweaks, twiddles, fixes and improvements.
* 1.13 - Added support for Table Valued Parameters as part of anonymous objects * 1.13 - Added support for Table Valued Parameters as part of anonymous objects
* - Added support for async * - Added support for async
* - Added support for sharing strategies between databases * - Added support for sharing strategies between databases
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment