Skip to content

Commit a77d5b8

Browse files
authored
Merge pull request #22 from Not-Diamond/release-please--branches--main--changes--next
release: 1.0.0-rc14
2 parents 7d889fa + 5ac9af9 commit a77d5b8

90 files changed

Lines changed: 126 additions & 115 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.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-rc13"
2+
".": "1.0.0-rc14"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 11
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/not-diamond-dragos199993%2Fnotdiamond-ce07c2efae541713a6bc9c540111adb2b9ff9fd472f77338d851cfb4b92239f4.yml
33
openapi_spec_hash: 9536c08e10a84315ce7555faff6c48dd
4-
config_hash: 8e0c5e2874cbb1951205148702248832
4+
config_hash: 11ee9bddc4b7df5f656add53f8f1ed67

CHANGELOG.md

Lines changed: 8 additions & 0 deletions

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion

README.md

Lines changed: 2 additions & 3 deletions

SECURITY.md

Lines changed: 1 addition & 1 deletion

api.md

Lines changed: 17 additions & 17 deletions

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[project]
22
name = "notdiamond"
3-
version = "1.0.0-rc13"
3+
version = "1.0.0-rc14"
44
description = "The official Python library for the notdiamond API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
77
authors = [
8-
{ name = "Notdiamond", email = "test@notdiamond.ai" },
8+
{ name = "Notdiamond", email = "contact@notdiamond.ai" },
99
]
1010
dependencies = [
1111
"httpx>=0.23.0, <1",
@@ -77,14 +77,14 @@ format = { chain = [
7777
"check:ruff" = "ruff check ."
7878
"fix:ruff" = "ruff check --fix ."
7979

80-
"check:importable" = "python -c 'import not_diamond'"
80+
"check:importable" = "python -c 'import notdiamond'"
8181

8282
typecheck = { chain = [
8383
"typecheck:pyright",
8484
"typecheck:mypy"
8585
]}
8686
"typecheck:pyright" = "pyright"
87-
"typecheck:verify-types" = "pyright --verifytypes not_diamond --ignoreexternal"
87+
"typecheck:verify-types" = "pyright --verifytypes notdiamond --ignoreexternal"
8888
"typecheck:mypy" = "mypy ."
8989

9090
[build-system]
@@ -97,7 +97,7 @@ include = [
9797
]
9898

9999
[tool.hatch.build.targets.wheel]
100-
packages = ["src/not_diamond"]
100+
packages = ["src/notdiamond"]
101101

102102
[tool.hatch.build.targets.sdist]
103103
# Basically everything except hidden files/directories (such as .github, .devcontainers, .python-version, etc)
@@ -165,7 +165,7 @@ show_error_codes = true
165165
#
166166
# We also exclude our `tests` as mypy doesn't always infer
167167
# types correctly and Pyright will still catch any type errors.
168-
exclude = ['src/not_diamond/_files.py', '_dev/.*.py', 'tests/.*']
168+
exclude = ['src/notdiamond/_files.py', '_dev/.*.py', 'tests/.*']
169169

170170
strict_equality = true
171171
implicit_reexport = true
@@ -257,7 +257,7 @@ length-sort = true
257257
length-sort-straight = true
258258
combine-as-imports = true
259259
extra-standard-library = ["typing_extensions"]
260-
known-first-party = ["not_diamond", "tests"]
260+
known-first-party = ["notdiamond", "tests"]
261261

262262
[tool.ruff.lint.per-file-ignores]
263263
"bin/**.py" = ["T201", "T203"]

release-please-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@
6161
],
6262
"release-type": "python",
6363
"extra-files": [
64-
"src/not_diamond/_version.py"
64+
"src/notdiamond/_version.py"
6565
]
6666
}

scripts/lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ echo "==> Running lints"
88
rye run lint
99

1010
echo "==> Making sure it imports"
11-
rye run python -c 'import not_diamond'
11+
rye run python -c 'import notdiamond'

0 commit comments

Comments
 (0)