Skip to content

Commit 3ca0f94

Browse files
committed
Fix statements query 'verb' param
* Bump to 0.0.3.0
1 parent 2da64df commit 3ca0f94

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

TinCan/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.0.2.0")]
36-
[assembly: AssemblyFileVersion("0.0.2.0")]
35+
[assembly: AssemblyVersion("0.0.3.0")]
36+
[assembly: AssemblyFileVersion("0.0.3.0")]

TinCan/StatementsQuery.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Dictionary<String, String> ToParameterMap (TCAPIVersion version)
4444
}
4545
if (verbId != null)
4646
{
47-
result.Add("verbId", verbId.ToString());
47+
result.Add("verb", verbId.ToString());
4848
}
4949
if (activityId != null)
5050
{

0 commit comments

Comments
 (0)