Skip to content

Commit 5030f6e

Browse files
release: 0.2.0
1 parent 0851a6e commit 5030f6e

File tree

5 files changed

+23
-5
lines changed

5 files changed

+23
-5
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-alpha.94"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## 0.2.0 (2025-09-16)
9+
10+
Full Changelog: [v0.2.0-alpha.94...v0.2.0](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.94...v0.2.0)
11+
12+
### Features
13+
14+
* integrated litellm for tracing ([49c1cb1](https://github.com/openlayer-ai/openlayer-python/commit/49c1cb1205f0d1e1668ef14ba8f707eb5bc79332))
15+
16+
17+
### Bug Fixes
18+
19+
* fixed model names and OpenLayer to Openlayer. ([572a1f2](https://github.com/openlayer-ai/openlayer-python/commit/572a1f2a01a41c7ed8d3b4947c4dd8ed5f408a35))
20+
21+
22+
### Styles
23+
24+
* lint fixes ([c138716](https://github.com/openlayer-ai/openlayer-python/commit/c1387161f2b5b3b0b7bffe78f0857e8930e3561c))
25+
826
## 0.2.0-alpha.94 (2025-09-11)
927

1028
Full Changelog: [v0.2.0-alpha.93...v0.2.0-alpha.94](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.93...v0.2.0-alpha.94)

README.md

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

1818
```sh
1919
# install from PyPI
20-
pip install --pre openlayer
20+
pip install openlayer
2121
```
2222

2323
## Usage
@@ -109,7 +109,7 @@ You can enable this by installing `aiohttp`:
109109

110110
```sh
111111
# install from PyPI
112-
pip install --pre openlayer[aiohttp]
112+
pip install openlayer[aiohttp]
113113
```
114114

115115
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 = "openlayer"
3-
version = "0.2.0-alpha.94"
3+
version = "0.2.0"
44
description = "The official Python library for the openlayer API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

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

0 commit comments

Comments
 (0)