diff --git a/CodeOnlyStoredProcedures.nuspec b/CodeOnlyStoredProcedures.nuspec index e8d5e4f..88b0c05 100644 --- a/CodeOnlyStoredProcedures.nuspec +++ b/CodeOnlyStoredProcedures.nuspec @@ -9,11 +9,9 @@ false A library for easily calling Stored Procedures in .NET. Works great with Entity Framework Code First models. Code Only Stored Procedures will not create any Stored Procedures on your database. Instead, its aim is to make it easy to call your existing stored procedures by writing simple code. - 2.2.7 -Fixed bug where empty Table Valued Parameters could not be passed. - -2.2.6 + 2.2.6 Fixed bug where dynamic stored procedures wouldn't dispose of the IDbCommand objects they created. +Fixed bug where empty Table Valued Parameters could not be passed. 2.2.5 Fixed bug where a dynamic stored procedure wouldn't dispose its database connection if the stored procedure threw an exception. diff --git a/appveyor.yml b/appveyor.yml index 889e88d..b26cd0d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 2.2.7.{build} +version: 2.2.6.{build} skip_tags: false branches: @@ -7,7 +7,7 @@ branches: - gh-pages init: - - ps: $env:releaseVersion = "2.2.7" + - ps: $env:releaseVersion = "2.2.6" - ps: $env:packageVersion = if (Test-Path env:\APPVEYOR_REPO_TAG_NAME) { "$env:APPVEYOR_REPO_TAG_NAME" } else { "{0}-aInternalBuild{1:000}" -f $env:releaseVersion, [System.Int32]::Parse($env:APPVEYOR_BUILD_NUMBER) } assembly_info: