Skip to content

Commit

Permalink
Switched version to 2.2.6, as that is the current release
Browse files Browse the repository at this point in the history
  • Loading branch information
abe545 committed May 24, 2016
1 parent e19dba8 commit 31b1de3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions CodeOnlyStoredProcedures.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>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.</description>
<releaseNotes>2.2.7
Fixed bug where empty Table Valued Parameters could not be passed.

2.2.6
<releaseNotes>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.
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.2.7.{build}
version: 2.2.6.{build}
skip_tags: false

branches:
Expand All @@ -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:
Expand Down

0 comments on commit 31b1de3

Please sign in to comment.