Skip to content

Commit 39d0348

Browse files
committed
Bump version to 22.0.0
1 parent 4b316d9 commit 39d0348

File tree

4 files changed

+38
-4
lines changed

4 files changed

+38
-4
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## 22.0.0 - 2019-01-07
4+
Major version release. Refer to our [migration guide for v22](https://github.com/stripe/stripe-dotnet/wiki/Migration-guide-for-v22) for a list of backwards incompatible changes to watch out for.
5+
6+
Pull requests included in this release (cf. [#1416](https://github.com/stripe/stripe-dotnet/pull/1416)):
7+
* [#1413](https://github.com/stripe/stripe-dotnet/pull/1413) Allow paging on upcoming invoice line items
8+
* [#1417](https://github.com/stripe/stripe-dotnet/pull/1417) Add support for verifying sources
9+
* [#1418](https://github.com/stripe/stripe-dotnet/pull/1418) Replace `RecipientActiveAccount` with `BankAccount`
10+
* [#1396](https://github.com/stripe/stripe-dotnet/pull/1396) Fix deserialization logic for polymorphic types
11+
* [#1419](https://github.com/stripe/stripe-dotnet/pull/1419) Replace public fields with properties
12+
* [#1422](https://github.com/stripe/stripe-dotnet/pull/1422) Specify culture for string operations
13+
* [#1424](https://github.com/stripe/stripe-dotnet/pull/1424) Remove overlapping method overloads
14+
* [#1425](https://github.com/stripe/stripe-dotnet/pull/1425) Move `SerializerSettings` to `StripeConfiguration`
15+
* [#1426](https://github.com/stripe/stripe-dotnet/pull/1426) Remove UTF-8 BOMs
16+
* [#1423](https://github.com/stripe/stripe-dotnet/pull/1423) Replace constants with static read-only properties
17+
* [#1427](https://github.com/stripe/stripe-dotnet/pull/1427) Fix compiler warnings
18+
* [#1428](https://github.com/stripe/stripe-dotnet/pull/1428) Make `ObjectsToTypes` dictionary immutable
19+
* [#1429](https://github.com/stripe/stripe-dotnet/pull/1429) Remove `StripeList.TotalCount`
20+
* [#1430](https://github.com/stripe/stripe-dotnet/pull/1430) Rename some properties for consistency
21+
* [#1431](https://github.com/stripe/stripe-dotnet/pull/1431) Rename `StripeDefaultCard` to `DefaultCard` on Recipient
22+
* [#1434](https://github.com/stripe/stripe-dotnet/pull/1434) Make `Deleted` nullable on all Stripe objects
23+
* [#1436](https://github.com/stripe/stripe-dotnet/pull/1436) Make object instances in tests readonly
24+
* [#1435](https://github.com/stripe/stripe-dotnet/pull/1435) Enable SourceLink
25+
* [#1437](https://github.com/stripe/stripe-dotnet/pull/1437) Use Mono for .NET Framework targets on UNIX systems
26+
* [#1438](https://github.com/stripe/stripe-dotnet/pull/1438) Fix license packaging
27+
* [#1439](https://github.com/stripe/stripe-dotnet/pull/1439) Fix some remaining StyleCop rules violations
28+
* [#1433](https://github.com/stripe/stripe-dotnet/pull/1433) Fix JSON serialization of Stripe objects
29+
* [#1441](https://github.com/stripe/stripe-dotnet/pull/1442) Disable optimizations in `SecureCompare`
30+
* [#1444](https://github.com/stripe/stripe-dotnet/pull/1444) Refactor test infrastructure
31+
* [#1447](https://github.com/stripe/stripe-dotnet/pull/1447) Minor fixes
32+
* [#1446](https://github.com/stripe/stripe-dotnet/pull/1446) Force the use of lists over arrays
33+
* [#1451](https://github.com/stripe/stripe-dotnet/pull/1451) Remove `Updated` and `UpdatedBy` from `ValueList`
34+
* [#1450](https://github.com/stripe/stripe-dotnet/pull/1450) Better handling of API version mismatch when deserializing events
35+
* [#1414](https://github.com/stripe/stripe-dotnet/pull/1414) Add support for auto-pagination
36+
337
## 21.9.0 - 2019-01-03
438
* [#1455](https://github.com/stripe/stripe-dotnet/pull/1455) Add support for deserializing `account.application.*` events
539

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
21.9.0
1+
22.0.0

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 21.9.0.{build}
1+
version: 22.0.0.{build}
22
image: Visual Studio 2017
33

44
environment:

src/Stripe.net/Stripe.net.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<PropertyGroup>
55
<Description>Stripe.net is a sync/async .NET 4.5+ client, and a portable class library for the Stripe API. (Official Library)</Description>
66
<AssemblyTitle>Stripe.net</AssemblyTitle>
7-
<VersionPrefix>21.9.0</VersionPrefix>
8-
<Version>21.9.0</Version>
7+
<VersionPrefix>22.0.0</VersionPrefix>
8+
<Version>22.0.0</Version>
99
<Authors>Stripe, Jayme Davis</Authors>
1010
<TargetFrameworks>netstandard1.2;netstandard2.0;net45</TargetFrameworks>
1111
<AssemblyName>Stripe.net</AssemblyName>

0 commit comments

Comments
 (0)