Skip to content

Commit c34b47c

Browse files
committed
fixed issue with BradcastStatus enum
1 parent c16b701 commit c34b47c

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CallfireApiClient.nuspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?><package>
22
<metadata>
33
<id>CallfireApiClient</id>
4-
<version>1.1.26</version>
4+
<version>1.1.27</version>
55
<title>CallFire API v2 client</title>
66
<authors>
77
Vladimir Mikhailov
@@ -15,6 +15,9 @@
1515
<description>C# client library for integration with Callfire REST API v2 services</description>
1616
<releaseNotes>Callfire API client Changelog
1717
=============================
18+
Version 1.1.27 - Feb 28 2019
19+
- fixed isssue with Broadcast Status enum
20+
1821
Version 1.1.26 - Jan 17 2019
1922
- updated RestSharp version to 106.6
2023

Changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Callfire API client Changelog
22
=============================
3+
Version 1.1.27 - Feb 28 2019
4+
- fixed isssue with Broadcast Status enum
5+
36
Version 1.1.26 - Jan 17 2019
47
- updated RestSharp version to 106.6
58

src/CallfireApiClient/Api/Campaigns/Model/BroadcastStatus.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ public enum BroadcastStatus
1010
RUNNING,
1111
STOPPED,
1212
FINISHED,
13-
ARCHIVED
13+
ARCHIVED,
14+
SCHEDULED,
15+
SUSPENDED,
16+
VALIDATING_EMAIL,
17+
VALIDATING_START
1418
}
15-
}
16-
19+
}

src/CallfireApiClient/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1313
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1414

15-
[assembly: AssemblyVersion("1.1.26.*")]
15+
[assembly: AssemblyVersion("1.1.27.*")]
1616

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

0 commit comments

Comments
 (0)