Skip to content

Commit d653a92

Browse files
Merge pull request #3 from legalesign/release-please--branches--main--changes--next
release: 0.3.0
2 parents 5281614 + ffba4a5 commit d653a92

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

.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.2.0"
2+
".": "0.3.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 51
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/legalesign%2Flegalesign-02fb3694e91878cba7b53d16f6b33ba47616ab801054c588d42dec73fb85712f.yml
33
openapi_spec_hash: 6d22b59d456c50501b509289f6c53c22
4-
config_hash: f01327d33463b32761757772376a2ba3
4+
config_hash: 811b22b4d441babe9f340462edffc2ea

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.3.0 (2025-09-19)
4+
5+
Full Changelog: [v0.2.0...v0.3.0](https://github.com/legalesign/legalesign-rest-python/compare/v0.2.0...v0.3.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([178351d](https://github.com/legalesign/legalesign-rest-python/commit/178351dc08b44a57f0acec7f941abfe032feed3b))
10+
311
## 0.2.0 (2025-09-19)
412

513
Full Changelog: [v0.1.0...v0.2.0](https://github.com/legalesign/legalesign-rest-python/compare/v0.1.0...v0.2.0)

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ The REST API documentation can be found on [legalesign.com](https://legalesign.c
1616
## Installation
1717

1818
```sh
19-
# install from the production repo
20-
pip install git+ssh://[email protected]/legalesign/legalesign-rest-python.git
19+
# install from PyPI
20+
pip install legalesign
2121
```
2222

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

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

7774
```sh
78-
# install from the production repo
79-
pip install 'legalesign[aiohttp] @ git+ssh://[email protected]/legalesign/legalesign-rest-python.git'
75+
# install from PyPI
76+
pip install legalesign[aiohttp]
8077
```
8178

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

pyproject.toml

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

src/legalesign/_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__ = "legalesign"
4-
__version__ = "0.2.0" # x-release-please-version
4+
__version__ = "0.3.0" # x-release-please-version

0 commit comments

Comments
 (0)