Skip to content

Commit 695abe2

Browse files
authored
Merge pull request #25 from lumalabs/release-please--branches--main--changes--next
release: 1.0.0
2 parents be1f767 + 017c4ac commit 695abe2

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-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.1.0-alpha.1"
2+
".": "1.0.0"
33
}

CHANGELOG.md

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

3+
## 1.0.0 (2024-09-16)
4+
5+
Full Changelog: [v0.1.0-alpha.1...v1.0.0](https://github.com/lumalabs/lumaai-python/compare/v0.1.0-alpha.1...v1.0.0)
6+
7+
### Features
8+
9+
* **api:** OpenAPI spec update via Stainless API ([#27](https://github.com/lumalabs/lumaai-python/issues/27)) ([23fe5ec](https://github.com/lumalabs/lumaai-python/commit/23fe5ecb07c1c7f6305b14f139220af293c8c980))
10+
11+
12+
### Chores
13+
14+
* **internal:** bump pyright / mypy version ([#24](https://github.com/lumalabs/lumaai-python/issues/24)) ([be1f767](https://github.com/lumalabs/lumaai-python/commit/be1f767627075f4dd7b8a0356970c115287e751d))
15+
* update SDK settings ([#26](https://github.com/lumalabs/lumaai-python/issues/26)) ([051824c](https://github.com/lumalabs/lumaai-python/commit/051824ca02ad4adcadcac6eb96cb30eb6dea4dbf))
16+
317
## 0.1.0-alpha.1 (2024-09-16)
418

519
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/lumalabs/lumaai-python/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)

pyproject.toml

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

src/lumaai/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
if base_url is None:
9393
base_url = os.environ.get("LUMAAI_BASE_URL")
9494
if base_url is None:
95-
base_url = f"https://api.lumalabs.ai/dream-machine/v1alpha"
95+
base_url = f"https://api.lumalabs.ai/dream-machine/v1"
9696

9797
super().__init__(
9898
version=__version__,
@@ -262,7 +262,7 @@ def __init__(
262262
if base_url is None:
263263
base_url = os.environ.get("LUMAAI_BASE_URL")
264264
if base_url is None:
265-
base_url = f"https://api.lumalabs.ai/dream-machine/v1alpha"
265+
base_url = f"https://api.lumalabs.ai/dream-machine/v1"
266266

267267
super().__init__(
268268
version=__version__,

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

0 commit comments

Comments
 (0)