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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.29.0"
".": "0.30.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 238
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-3996eb5bc3e7f69441c9f098475ef7ae3f9d8aaeea130d75cb40510df996c032.yml
openapi_spec_hash: 569e865a0ab51d0a80eee01a2c8bbb42
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-eaee3db1b6a076bc5c49879e3b3154e5ae466d0fd278917a3835f4ed0c9cce63.yml
openapi_spec_hash: 34a379fd12fbaa209f10dde757ede478
config_hash: ac050010e5453883d5e5fa603554a2e0
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.30.0 (2026-05-06)

Full Changelog: [v0.29.0...v0.30.0](https://github.com/Increase/increase-csharp/compare/v0.29.0...v0.30.0)

### Features

* **api:** api update ([a3d1047](https://github.com/Increase/increase-csharp/commit/a3d10471df61ea95c8c7fdaa60611b3fd6b7f0d0))

## 0.29.0 (2026-05-04)

Full Changelog: [v0.28.0...v0.29.0](https://github.com/Increase/increase-csharp/compare/v0.28.0...v0.29.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public void FieldRoundtrip_Works()
{
BusinessApplicationIdentifier = BusinessApplicationIdentifier.FundsDisbursement,
CardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0",
MerchantCategoryCode = "1234",
MerchantCategoryCode = "5734",
MerchantCityName = "New York",
MerchantName = "Acme Corp",
MerchantNamePrefix = "Acme",
Expand All @@ -41,7 +41,7 @@ public void FieldRoundtrip_Works()
ApiEnum<string, BusinessApplicationIdentifier> expectedBusinessApplicationIdentifier =
BusinessApplicationIdentifier.FundsDisbursement;
string expectedCardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0";
string expectedMerchantCategoryCode = "1234";
string expectedMerchantCategoryCode = "5734";
string expectedMerchantCityName = "New York";
string expectedMerchantName = "Acme Corp";
string expectedMerchantNamePrefix = "Acme";
Expand Down Expand Up @@ -102,7 +102,7 @@ public void OptionalNonNullableParamsUnsetAreNotSet_Works()
{
BusinessApplicationIdentifier = BusinessApplicationIdentifier.FundsDisbursement,
CardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0",
MerchantCategoryCode = "1234",
MerchantCategoryCode = "5734",
MerchantCityName = "New York",
MerchantName = "Acme Corp",
MerchantNamePrefix = "Acme",
Expand Down Expand Up @@ -141,7 +141,7 @@ public void OptionalNonNullableParamsSetToNullAreNotSet_Works()
{
BusinessApplicationIdentifier = BusinessApplicationIdentifier.FundsDisbursement,
CardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0",
MerchantCategoryCode = "1234",
MerchantCategoryCode = "5734",
MerchantCityName = "New York",
MerchantName = "Acme Corp",
MerchantNamePrefix = "Acme",
Expand Down Expand Up @@ -189,7 +189,7 @@ public void Url_Works()
{
BusinessApplicationIdentifier = BusinessApplicationIdentifier.FundsDisbursement,
CardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0",
MerchantCategoryCode = "1234",
MerchantCategoryCode = "5734",
MerchantCityName = "New York",
MerchantName = "Acme Corp",
MerchantNamePrefix = "Acme",
Expand Down Expand Up @@ -219,7 +219,7 @@ public void CopyConstructor_Works()
{
BusinessApplicationIdentifier = BusinessApplicationIdentifier.FundsDisbursement,
CardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0",
MerchantCategoryCode = "1234",
MerchantCategoryCode = "5734",
MerchantCityName = "New York",
MerchantName = "Acme Corp",
MerchantNamePrefix = "Acme",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public async Task Create_Works()
{
BusinessApplicationIdentifier = BusinessApplicationIdentifier.FundsDisbursement,
CardTokenID = "outbound_card_token_zlt0ml6youq3q7vcdlg0",
MerchantCategoryCode = "1234",
MerchantCategoryCode = "5734",
MerchantCityName = "New York",
MerchantName = "Acme Corp",
MerchantNamePrefix = "Acme",
Expand Down
2 changes: 1 addition & 1 deletion src/Increase.Api/Increase.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Metadata -->
<AssemblyTitle>Increase C#</AssemblyTitle>
<AssemblyName>Increase.Api</AssemblyName>
<VersionPrefix>0.29.0</VersionPrefix>
<VersionPrefix>0.30.0</VersionPrefix>
<Description>The official .NET library for the Increase API.</Description>
<OutputType>Library</OutputType>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Loading