Skip to content

Commit fc44e5d

Browse files
committed
Release 5.3.0
1 parent 3058755 commit fc44e5d

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
twilio-csharp Changelog
22
=======================
33

4+
[2017-04-12] Version 5.3.0
5+
--------------------------
6+
- Allow moving Phone Numbers to subaccounts
7+
48
[2017-04-12] Version 5.2.1
59
--------------------------
610
- Add `validityPeriod` to Message creation

src/Twilio/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
internal class AssemblyInfomation
1616
{
17-
public const string AssemblyInformationalVersion = "5.2.1";
17+
public const string AssemblyInformationalVersion = "5.3.0";
1818
}

src/Twilio/Rest/Api/V2010/Account/IncomingPhoneNumberOptions.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,11 @@ public UpdateIncomingPhoneNumberOptions(string pathSid)
111111
public List<KeyValuePair<string, string>> GetParams()
112112
{
113113
var p = new List<KeyValuePair<string, string>>();
114+
if (AccountSid != null)
115+
{
116+
p.Add(new KeyValuePair<string, string>("AccountSid", AccountSid.ToString()));
117+
}
118+
114119
if (ApiVersion != null)
115120
{
116121
p.Add(new KeyValuePair<string, string>("ApiVersion", ApiVersion));

src/Twilio/Twilio.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<Copyright>Copyright © Twilio</Copyright>
88
<AssemblyTitle>Twilio</AssemblyTitle>
99
<NeutralLanguage>en-US</NeutralLanguage>
10-
<Version>5.2.1</Version>
10+
<Version>5.3.0</Version>
1111
<Authors>Twilio</Authors>
1212
<NoWarn>$(NoWarn);CS1591</NoWarn>
1313
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

0 commit comments

Comments
 (0)