Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.158.0 #821

Merged
merged 2 commits into from
Nov 13, 2024
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.157.0"
".": "0.158.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 199
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8b8e19d1cfc46bbf4bd8f898d3231d6d571ae179ff531b22037470d4051f8351.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-8ced45f4f5595df242ca2c43d1c74f4904ca3d18581ea6ca335f885967a0a663.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.158.0 (2024-11-13)

Full Changelog: [v0.157.0...v0.158.0](https://github.com/Increase/increase-python/compare/v0.157.0...v0.158.0)

### Features

* **api:** api update ([#820](https://github.com/Increase/increase-python/issues/820)) ([6dea3f0](https://github.com/Increase/increase-python/commit/6dea3f05278e2fac58dee194384fd367c82c3e69))

## 0.157.0 (2024-11-13)

Full Changelog: [v0.156.0...v0.157.0](https://github.com/Increase/increase-python/compare/v0.156.0...v0.157.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.157.0"
version = "0.158.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "increase"
__version__ = "0.157.0" # x-release-please-version
__version__ = "0.158.0" # x-release-please-version
6 changes: 3 additions & 3 deletions src/increase/types/card_payment.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ class ElementCardAuthorization(BaseModel):
card is transacting with.
"""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down Expand Up @@ -752,7 +752,7 @@ class ElementCardDecline(BaseModel):
card is transacting with.
"""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down Expand Up @@ -2498,7 +2498,7 @@ class ElementCardValidation(BaseModel):
card is transacting with.
"""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/declined_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class SourceCardDecline(BaseModel):
card is transacting with.
"""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/pending_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class SourceCardAuthorization(BaseModel):
card is transacting with.
"""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/real_time_decision.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class CardAuthorization(BaseModel):
card is transacting with.
"""

merchant_city: Optional[str] = None
merchant_city: str
"""The city the merchant resides in."""

merchant_country: str
Expand Down