Skip to content

Commit 634691b

Browse files
authored
Merge pull request #32 from Not-Diamond/release-please--branches--main--changes--next
release: 1.1.2
2 parents 3fec927 + c3c5dfe commit 634691b

6 files changed

Lines changed: 20 additions & 7 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.1.1"
2+
".": "1.1.2"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 10
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/not-diamond-dragos199993%2Fnotdiamond-a72d3f023c9078e7903f664c8f5c16acd491712a2f2015f5318130eee3711a71.yml
3-
openapi_spec_hash: b34691ecf5e1df6897659ee9dd2a2c85
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/not-diamond-dragos199993%2Fnotdiamond-3402f54472e42b6a55bbe2a1f0772f74f727c2a4c836f8ca3f394d8a438dd3d3.yml
3+
openapi_spec_hash: 8c5d1b66cc0f2f582b5cd4fc440bcc4f
44
config_hash: cbbab8187801632790efb51513a51e5e

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.1.2 (2025-12-19)
4+
5+
Full Changelog: [v1.1.1...v1.1.2](https://github.com/Not-Diamond/not-diamond-python/compare/v1.1.1...v1.1.2)
6+
7+
### Chores
8+
9+
* **internal:** add `--fix` argument to lint script ([448c196](https://github.com/Not-Diamond/not-diamond-python/commit/448c1962fc32893b4cd7ace7d2a1c1b1a8beb479))
10+
311
## 1.1.1 (2025-12-18)
412

513
Full Changelog: [v1.1.0...v1.1.1](https://github.com/Not-Diamond/not-diamond-python/compare/v1.1.0...v1.1.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 = "notdiamond"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "The official Python library for the notdiamond API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

scripts/lint

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ set -e
44

55
cd "$(dirname "$0")/.."
66

7-
echo "==> Running lints"
8-
rye run lint
7+
if [ "$1" = "--fix" ]; then
8+
echo "==> Running lints with --fix"
9+
rye run fix:ruff
10+
else
11+
echo "==> Running lints"
12+
rye run lint
13+
fi
914

1015
echo "==> Making sure it imports"
1116
rye run python -c 'import notdiamond'

src/notdiamond/_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__ = "notdiamond"
4-
__version__ = "1.1.1" # x-release-please-version
4+
__version__ = "1.1.2" # x-release-please-version

0 commit comments

Comments
 (0)