Skip to content

Commit

Permalink
bumped version to 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymedavis committed Feb 17, 2015
1 parent 489f528 commit 0c64865
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Stripe.net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Stripe.net</id>
<version>2.7.0</version>
<version>2.7.1</version>
<authors>Jayme Davis</authors>
<owners>Jayme Davis</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
2 changes: 1 addition & 1 deletion rakefile.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'albacore'

VERSION = "2.7.0"
VERSION = "2.7.1"

task :default => [:build35, :build40, :output35, :output40]

Expand Down
2 changes: 1 addition & 1 deletion src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
[assembly: AssemblyCompany("Jayme Davis")]
[assembly: AssemblyProduct("Stripe.net")]
[assembly: AssemblyCopyright("Copyright (C) Jayme Davis 2015")]
[assembly: AssemblyVersion("2.7.0")]
[assembly: AssemblyVersion("2.7.1")]
12 changes: 6 additions & 6 deletions src/Stripe/Services/Transfers/StripeTransferCreateOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ public class StripeTransferCreateOptions
[JsonProperty("description")]
public string Description { get; set; }

[JsonProperty("statement_descriptor")]
public string StatementDescriptor { get; set; }

[JsonProperty("metadata")]
public Dictionary<string, string> Metadata { get; set; }

[JsonProperty("bank_account")]
public string BankAccountId { get; set; }

[JsonProperty("card")]
public string CardId { get; set; }

[JsonProperty("statement_descriptor")]
public string StatementDescriptor { get; set; }

[JsonProperty("metadata")]
public Dictionary<string, string> Metadata { get; set; }
}
}

0 comments on commit 0c64865

Please sign in to comment.