Skip to content

Commit 2ae3bf7

Browse files
authored
Merge pull request #17 from scaleapi/release-please--branches--main--changes--next
release: 0.1.0
2 parents 95a629b + 60cf119 commit 2ae3bf7

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.1.0-alpha.6"
2+
".": "0.1.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: 34
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-62a09183a027c64707ad1b9d7a5ccc66c8abf3965e6075282cb5ab72f742a2b3.yml
33
openapi_spec_hash: 47f43703822077a82e2edf82d4b7e0e5
4-
config_hash: e9fb383df76f572ee9aefe7b876adc2f
4+
config_hash: 8691ea87e9147c7f77e63100041c1a3c

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.0 (2025-07-23)
4+
5+
Full Changelog: [v0.1.0-alpha.6...v0.1.0](https://github.com/scaleapi/agentex-python/compare/v0.1.0-alpha.6...v0.1.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([84010e4](https://github.com/scaleapi/agentex-python/commit/84010e4adecf7c779abd9a828000a3b50d9d3ac3))
10+
311
## 0.1.0-alpha.6 (2025-07-23)
412

513
Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/scaleapi/agentex-python/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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://[email protected]/scaleapi/agentex-python.git
19+
# install from PyPI
20+
pip install agentex-sdk
2121
```
2222

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

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

7976
```sh
80-
# install from the production repo
81-
pip install 'agentex-sdk[aiohttp] @ git+ssh://[email protected]/scaleapi/agentex-python.git'
77+
# install from PyPI
78+
pip install agentex-sdk[aiohttp]
8279
```
8380

8481
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 = "agentex-sdk"
3-
version = "0.1.0-alpha.6"
3+
version = "0.1.0"
44
description = "The official Python library for the agentex API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/agentex/_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__ = "agentex"
4-
__version__ = "0.1.0-alpha.6" # x-release-please-version
4+
__version__ = "0.1.0" # x-release-please-version

0 commit comments

Comments
 (0)