Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CallfireApiClient.nuspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?><package>
<metadata>
<id>CallfireApiClient</id>
<version>1.1.26</version>
<version>1.1.27</version>
<title>CallFire API v2 client</title>
<authors>
Vladimir Mikhailov
Expand All @@ -15,6 +15,9 @@
<description>C# client library for integration with Callfire REST API v2 services</description>
<releaseNotes>Callfire API client Changelog
=============================
Version 1.1.27 - Feb 28 2019
- fixed isssue with Broadcast Status enum

Version 1.1.26 - Jan 17 2019
- updated RestSharp version to 106.6

Expand Down
3 changes: 3 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Callfire API client Changelog
=============================
Version 1.1.27 - Feb 28 2019
- fixed isssue with Broadcast Status enum

Version 1.1.26 - Jan 17 2019
- updated RestSharp version to 106.6

Expand Down
9 changes: 6 additions & 3 deletions src/CallfireApiClient/Api/Campaigns/Model/BroadcastStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ public enum BroadcastStatus
RUNNING,
STOPPED,
FINISHED,
ARCHIVED
ARCHIVED,
SCHEDULED,
SUSPENDED,
VALIDATING_EMAIL,
VALIDATING_START
}
}

}
2 changes: 1 addition & 1 deletion src/CallfireApiClient/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("1.1.26.*")]
[assembly: AssemblyVersion("1.1.27.*")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down