Skip to content

Commit 285bd16

Browse files
authored
Merge pull request #11 from Not-Diamond/release-please--branches--main--changes--next
release: 1.0.0-rc6
2 parents c9774ad + 3641c6b commit 285bd16

6 files changed

Lines changed: 14 additions & 6 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-
".": "1.0.0-rc5"
2+
".": "1.0.0-rc6"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 14
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/not-diamond-dragos199993%2Fnot-diamond-e24f2461df15a806e3208e5228ecdb9913e9c9d526cd68cf87fee4a2528b95c3.yml
33
openapi_spec_hash: a7a8c716d5b412a6befc68091a7627ea
4-
config_hash: 9f93714494d4e0582c671dbf4662f1ea
4+
config_hash: 54d8fb8693dd5ccba9ea95cb8c161f3d

CHANGELOG.md

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

3+
## 1.0.0-rc6 (2025-11-06)
4+
5+
Full Changelog: [v1.0.0-rc5...v1.0.0-rc6](https://github.com/Not-Diamond/not-diamond-python/compare/v1.0.0-rc5...v1.0.0-rc6)
6+
7+
### Features
8+
9+
* **api:** manual updates ([e864113](https://github.com/Not-Diamond/not-diamond-python/commit/e864113c227997b0c04a02cad05b8963fe5a9283))
10+
311
## 1.0.0-rc5 (2025-11-05)
412

513
Full Changelog: [v1.0.0-rc4...v1.0.0-rc5](https://github.com/Not-Diamond/not-diamond-python/compare/v1.0.0-rc4...v1.0.0-rc5)

pyproject.toml

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

src/not_diamond/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def __init__(
9595
if base_url is None:
9696
base_url = os.environ.get("NOT_DIAMOND_BASE_URL")
9797
if base_url is None:
98-
base_url = f"/"
98+
base_url = f"https://api.notdiamond.ai"
9999

100100
super().__init__(
101101
version=__version__,
@@ -273,7 +273,7 @@ def __init__(
273273
if base_url is None:
274274
base_url = os.environ.get("NOT_DIAMOND_BASE_URL")
275275
if base_url is None:
276-
base_url = f"/"
276+
base_url = f"https://api.notdiamond.ai"
277277

278278
super().__init__(
279279
version=__version__,

src/not_diamond/_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__ = "not_diamond"
4-
__version__ = "1.0.0-rc5" # x-release-please-version
4+
__version__ = "1.0.0-rc6" # x-release-please-version

0 commit comments

Comments
 (0)