Skip to content

Commit 4e77ddd

Browse files
authored
Merge pull request #2 from sentdm/release-please--branches--main--changes--next
release: 0.1.1
2 parents db140fe + 04aa20d commit 4e77ddd

8 files changed

Lines changed: 111 additions & 106 deletions

File tree

.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.1.0"
2+
".": "0.1.1"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 19
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sent%2Fsent-dm-0fb2b782f3dce1a18dea4f67716279aa820eb326bb218ad7d71d46d4440e9933.yml
3-
openapi_spec_hash: 9a292964e73307d88c8cc119c9151f16
4-
config_hash: 2d4116bc1e863ff38cd3d4b1a7ec639c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sent%2Fsent-dm-9bd9d3b1088033ce71a3141eedd1ae58dd0fb9c2c0001587a92f1eb2dce1dd56.yml
3+
openapi_spec_hash: c836975b96491bea1ee2d34fcc28170f
4+
config_hash: 19b6c23dcb6a21dd46ee4630ac025c98

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.1.1 (2026-01-27)
4+
5+
Full Changelog: [v0.1.0...v0.1.1](https://github.com/sentdm/sent-dm-python/compare/v0.1.0...v0.1.1)
6+
7+
### Chores
8+
9+
* update SDK settings ([a712995](https://github.com/sentdm/sent-dm-python/commit/a712995ce16452fd8e30e519a766796c486370fa))
10+
311
## 0.1.0 (2026-01-27)
412

513
Full Changelog: [v0.0.1...v0.1.0](https://github.com/sentdm/sent-dm-python/compare/v0.0.1...v0.1.0)

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Sent Dm Python API library
22

33
<!-- prettier-ignore -->
4-
[![PyPI version](https://img.shields.io/pypi/v/sent_dm.svg?label=pypi%20(stable))](https://pypi.org/project/sent_dm/)
4+
[![PyPI version](https://img.shields.io/pypi/v/sentdm.svg?label=pypi%20(stable))](https://pypi.org/project/sentdm/)
55

66
The Sent Dm Python library provides convenient access to the Sent Dm REST API from any Python 3.9+
77
application. The library includes type definitions for all request params and response fields,
@@ -16,13 +16,10 @@ The full API of this library can be found in [api.md](api.md).
1616
## Installation
1717

1818
```sh
19-
# install from the production repo
20-
pip install git+ssh://git@github.com/sentdm/sent-dm-python.git
19+
# install from PyPI
20+
pip install sentdm
2121
```
2222

23-
> [!NOTE]
24-
> Once this package is [published to PyPI](https://www.stainless.com/docs/guides/publish), this will become: `pip install sent_dm`
25-
2623
## Usage
2724

2825
The full API of this library can be found in [api.md](api.md).
@@ -81,8 +78,8 @@ By default, the async client uses `httpx` for HTTP requests. However, for improv
8178
You can enable this by installing `aiohttp`:
8279

8380
```sh
84-
# install from the production repo
85-
pip install 'sent_dm[aiohttp] @ git+ssh://git@github.com/sentdm/sent-dm-python.git'
81+
# install from PyPI
82+
pip install sentdm[aiohttp]
8683
```
8784

8885
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
2-
name = "sent_dm"
3-
version = "0.1.0"
2+
name = "sentdm"
3+
version = "0.1.1"
44
description = "The official Python library for the sent-dm API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

requirements-dev.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ annotated-types==0.7.0
66
anyio==4.12.0
77
# via
88
# httpx
9-
# sent-dm
9+
# sentdm
1010
backports-asyncio-runner==1.2.0 ; python_full_version < '3.11'
1111
# via pytest-asyncio
1212
certifi==2025.11.12
@@ -17,7 +17,7 @@ colorama==0.4.6 ; sys_platform == 'win32'
1717
# via pytest
1818
dirty-equals==0.11
1919
distro==1.9.0
20-
# via sent-dm
20+
# via sentdm
2121
exceptiongroup==1.3.1 ; python_full_version < '3.11'
2222
# via
2323
# anyio
@@ -31,7 +31,7 @@ httpcore==1.0.9
3131
httpx==0.28.1
3232
# via
3333
# respx
34-
# sent-dm
34+
# sentdm
3535
idna==3.11
3636
# via
3737
# anyio
@@ -59,7 +59,7 @@ pathspec==0.12.1
5959
pluggy==1.6.0
6060
# via pytest
6161
pydantic==2.12.5
62-
# via sent-dm
62+
# via sentdm
6363
pydantic-core==2.41.5
6464
# via pydantic
6565
pygments==2.19.2
@@ -86,7 +86,7 @@ ruff==0.14.7
8686
six==1.17.0 ; python_full_version < '3.10'
8787
# via python-dateutil
8888
sniffio==1.3.1
89-
# via sent-dm
89+
# via sentdm
9090
time-machine==2.19.0 ; python_full_version < '3.10'
9191
time-machine==3.1.0 ; python_full_version >= '3.10'
9292
tomli==2.3.0 ; python_full_version < '3.11'
@@ -102,7 +102,7 @@ typing-extensions==4.15.0
102102
# pydantic-core
103103
# pyright
104104
# pytest-asyncio
105-
# sent-dm
105+
# sentdm
106106
# typing-inspection
107107
typing-inspection==0.4.2
108108
# via pydantic

src/sent_dm/_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__ = "sent_dm"
4-
__version__ = "0.1.0" # x-release-please-version
4+
__version__ = "0.1.1" # x-release-please-version

uv.lock

Lines changed: 85 additions & 85 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)