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.30.0"
".": "0.31.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-eaee3db1b6a076bc5c49879e3b3154e5ae466d0fd278917a3835f4ed0c9cce63.yml
openapi_spec_hash: 34a379fd12fbaa209f10dde757ede478
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-b6168f5ea09213fe8a507a6b13ac02357a31fff02d2801be24c35f8f495142cd.yml
openapi_spec_hash: c0e12e8e60af1893509f4dea2ea2feae
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.31.0 (2026-05-08)

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

### Features

* **api:** api update ([008f31d](https://github.com/Increase/increase-csharp/commit/008f31d65eda9b179c189f38e3e12401fb54e64b))

## 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)
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.30.0</VersionPrefix>
<VersionPrefix>0.31.0</VersionPrefix>
<Description>The official .NET library for the Increase API.</Description>
<OutputType>Library</OutputType>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
3 changes: 2 additions & 1 deletion src/Increase.Api/Models/Exports/Export.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,8 @@ public enum ExportCategory
TransactionCsv,

/// <summary>
/// Export a CSV of account balances for the dates in a given range.
/// Export a CSV of account balances for the dates in a given range. (deprecated,
/// use `daily_account_balance_csv` instead)
/// </summary>
BalanceCsv,

Expand Down
3 changes: 2 additions & 1 deletion src/Increase.Api/Models/Exports/ExportCreateParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,8 @@ public enum Category
TransactionCsv,

/// <summary>
/// Export a CSV of account balances for the dates in a given range.
/// Export a CSV of account balances for the dates in a given range. (deprecated,
/// use `daily_account_balance_csv` instead)
/// </summary>
BalanceCsv,

Expand Down
3 changes: 2 additions & 1 deletion src/Increase.Api/Models/Exports/ExportListParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ public enum ExportListParamsCategory
TransactionCsv,

/// <summary>
/// Export a CSV of account balances for the dates in a given range.
/// Export a CSV of account balances for the dates in a given range. (deprecated,
/// use `daily_account_balance_csv` instead)
/// </summary>
BalanceCsv,

Expand Down
Loading