Skip to content

Commit 80ed501

Browse files
release: 2.0.0
1 parent 9f737cc commit 80ed501

5 files changed

Lines changed: 26 additions & 5 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.0.1-alpha.0"
2+
".": "2.0.0"
33
}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
## 2.0.0 (2025-11-13)
4+
5+
Full Changelog: [v0.0.1-alpha.0...v2.0.0](https://github.com/postgrid/postgrid-python/compare/v0.0.1-alpha.0...v2.0.0)
6+
7+
### Bug Fixes
8+
9+
* **api:** Prepare request fix ([9f737cc](https://github.com/postgrid/postgrid-python/commit/9f737cc73d70892712759f52624ade9f9bd8ba7e))
10+
* compat with Python 3.14 ([53457ab](https://github.com/postgrid/postgrid-python/commit/53457abee1fea7154fd0918aa194f106ff4a9a51))
11+
* **compat:** update signatures of `model_dump` and `model_dump_json` for Pydantic v1 ([899cab3](https://github.com/postgrid/postgrid-python/commit/899cab3df49e481eee336a3e585df7bb58334b0b))
12+
* **readme:** rename PostGrid ([c23572a](https://github.com/postgrid/postgrid-python/commit/c23572aeb87f04560983d0bdc664fecd393bab2a))
13+
14+
15+
### Chores
16+
17+
* **internal:** codegen related update ([3b415ec](https://github.com/postgrid/postgrid-python/commit/3b415ece8193658f82764f82f6e6c55575b3d005))
18+
* **package:** drop Python 3.8 support ([e2e6808](https://github.com/postgrid/postgrid-python/commit/e2e6808b739591baf7258c1ea49fca1d83b09dfc))
19+
* sync repo ([3f005c5](https://github.com/postgrid/postgrid-python/commit/3f005c5c29d1583544b1e55269fe71b07f165d13))
20+
* update SDK settings ([8831e90](https://github.com/postgrid/postgrid-python/commit/8831e903672a9e505744acb42af75da40c816f61))
21+
* update SDK settings ([277f25a](https://github.com/postgrid/postgrid-python/commit/277f25a1fa957073e355fba73bfa783b85adb2ad))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The REST API documentation can be found on [docs.postgrid.com](https://docs.post
1515

1616
```sh
1717
# install from PyPI
18-
pip install --pre postgrid-python
18+
pip install postgrid-python
1919
```
2020

2121
## Usage
@@ -83,7 +83,7 @@ You can enable this by installing `aiohttp`:
8383

8484
```sh
8585
# install from PyPI
86-
pip install --pre postgrid-python[aiohttp]
86+
pip install postgrid-python[aiohttp]
8787
```
8888

8989
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 = "postgrid-python"
3-
version = "0.0.1-alpha.0"
3+
version = "2.0.0"
44
description = "The official Python library for the PostGrid API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/postgrid/_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__ = "postgrid"
4-
__version__ = "0.0.1-alpha.0" # x-release-please-version
4+
__version__ = "2.0.0" # x-release-please-version

0 commit comments

Comments
 (0)