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 @@
{
".": "3.11.0"
".": "3.12.0"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 3.12.0 (2025-03-05)

Full Changelog: [v3.11.0...v3.12.0](https://github.com/orbcorp/orb-python/compare/v3.11.0...v3.12.0)

### Features

* **api:** manual updates ([#569](https://github.com/orbcorp/orb-python/issues/569)) ([d6ef667](https://github.com/orbcorp/orb-python/commit/d6ef667612110bf78ab000d941c9e7b982259133))

## 3.11.0 (2025-03-05)

Full Changelog: [v3.10.0...v3.11.0](https://github.com/orbcorp/orb-python/compare/v3.10.0...v3.11.0)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ client = Orb(
api_key=os.environ.get("ORB_API_KEY"), # This is the default and can be omitted
)

customer_model = client.customers.create(
customer = client.customers.create(
email="[email protected]",
name="My Customer",
)
print(customer_model.id)
print(customer.id)
```

While you can provide an `api_key` keyword argument,
Expand All @@ -56,11 +56,11 @@ client = AsyncOrb(


async def main() -> None:
customer_model = await client.customers.create(
customer = await client.customers.create(
email="[email protected]",
name="My Customer",
)
print(customer_model.id)
print(customer.id)


asyncio.run(main())
Expand Down Expand Up @@ -151,7 +151,7 @@ from orb import Orb

client = Orb()

customer_model = client.customers.create(
customer = client.customers.create(
email="[email protected]",
name="My Customer",
billing_address={
Expand All @@ -160,7 +160,7 @@ customer_model = client.customers.create(
"line1": "123 Example Street",
},
)
print(customer_model.id)
print(customer.id)
```

## Webhook Verification
Expand Down
331 changes: 155 additions & 176 deletions api.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "orb-billing"
version = "3.11.0"
version = "3.12.0"
description = "The official Python library for the orb API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/orb/_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__ = "orb"
__version__ = "3.11.0" # x-release-please-version
__version__ = "3.12.0" # x-release-please-version
Loading