Skip to content

Commit d8ad6af

Browse files
chore(internal): version bump (#254)
1 parent 25480f4 commit d8ad6af

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.github/workflows/release-doctor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Release Doctor
22
on:
33
pull_request:
4+
branches:
5+
- v3
46
workflow_dispatch:
57

68
jobs:

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.1"
2+
".": "0.1.0"
33
}

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,12 @@ client = Intercom(
283283
)
284284
```
285285

286+
You can also customize the client on a per-request basis by using `with_options()`:
287+
288+
```python
289+
client.with_options(http_client=DefaultHttpxClient(...))
290+
```
291+
286292
### Managing HTTP resources
287293

288294
By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python-intercom"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
description = "The official Python library for the intercom API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/python_intercom/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "python_intercom"
4-
__version__ = "0.0.1" # x-release-please-version
4+
__version__ = "0.1.0" # x-release-please-version

0 commit comments

Comments
 (0)