Skip to content

Commit 8728985

Browse files
authored
Merge pull request #80 from isaacus-dev/release-please--branches--main--changes--next
release: 0.19.1
2 parents 9fdb3aa + 3a69a69 commit 8728985

File tree

30 files changed

+175
-88
lines changed

30 files changed

+175
-88
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.19.0"
2+
".": "0.19.1"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 5
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-daf4baba7c77b0df59c77b13dd57c56da4900b5b3f95f81a8346ae9762419f95.yml
3-
openapi_spec_hash: 346769e832e482cea4496f92d56dd8b6
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-f97414fc062dd07f3ac5066afe3decb2d6bff49ff129c3633096d59d0d28ded9.yml
3+
openapi_spec_hash: 90f19133c18780ddeeebdf9dd741352b
44
config_hash: 9040e7359f066240ad536041fb2c5185

CHANGELOG.md

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

3+
## 0.19.1 (2026-02-16)
4+
5+
Full Changelog: [v0.19.0...v0.19.1](https://github.com/isaacus-dev/isaacus-python/compare/v0.19.0...v0.19.1)
6+
7+
### Chores
8+
9+
* format all `api.md` files ([df775e3](https://github.com/isaacus-dev/isaacus-python/commit/df775e3230586fbb1dacec902a3fc40c181e7c9b))
10+
* **internal:** fix lint error on Python 3.14 ([59cc825](https://github.com/isaacus-dev/isaacus-python/commit/59cc825b036e5b7ad55b029d4027eb65563a3aa2))
11+
12+
13+
### Documentation
14+
15+
* **api:** clarify ilgs span whitespace coverage ([75d28d4](https://github.com/isaacus-dev/isaacus-python/commit/75d28d4abeec47cb0340380e26828857e88f59fb))
16+
* **api:** improve explanation of extractable dates ([2b81647](https://github.com/isaacus-dev/isaacus-python/commit/2b81647df748c71543b60fa94d579fff0b38a4e6))
17+
318
## 0.19.0 (2026-02-12)
419

520
Full Changelog: [v0.18.1...v0.19.0](https://github.com/isaacus-dev/isaacus-python/compare/v0.18.1...v0.19.0)

api.md

Lines changed: 3 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,7 @@ Methods:
1212

1313
# Classifications
1414

15-
## Universal
16-
17-
Types:
18-
19-
```python
20-
from isaacus.types.classifications.universal import UniversalClassificationResponse
21-
```
22-
23-
Methods:
24-
25-
- <code title="post /classifications/universal">client.classifications.universal.<a href="./src/isaacus/resources/classifications/universal.py">create</a>(\*\*<a href="src/isaacus/types/classifications/universal/universal_create_params.py">params</a>) -> <a href="./src/isaacus/types/classifications/universal/universal_classification_response.py">UniversalClassificationResponse</a></code>
15+
## [Universal](src/isaacus/resources/classifications/api.md)
2616

2717
# Rerankings
2818

@@ -38,17 +28,7 @@ Methods:
3828

3929
# Extractions
4030

41-
## QA
42-
43-
Types:
44-
45-
```python
46-
from isaacus.types.extractions.qa import AnswerExtractionResponse
47-
```
48-
49-
Methods:
50-
51-
- <code title="post /extractions/qa">client.extractions.qa.<a href="./src/isaacus/resources/extractions/qa.py">create</a>(\*\*<a href="src/isaacus/types/extractions/qa/qa_create_params.py">params</a>) -> <a href="./src/isaacus/types/extractions/qa/answer_extraction_response.py">AnswerExtractionResponse</a></code>
31+
## [QA](src/isaacus/resources/extractions/api.md)
5232

5333
# Enrichments
5434

@@ -64,25 +44,4 @@ Methods:
6444

6545
# ILGS
6646

67-
## v1
68-
69-
Types:
70-
71-
```python
72-
from isaacus.types.ilgs.v1 import (
73-
Crossreference,
74-
Date,
75-
Document,
76-
Email,
77-
ExternalDocument,
78-
IDNumber,
79-
Location,
80-
Person,
81-
PhoneNumber,
82-
Quote,
83-
Segment,
84-
Span,
85-
Term,
86-
Website,
87-
)
88-
```
47+
## [v1](src/isaacus/resources/api.md)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "isaacus"
3-
version = "0.19.0"
3+
version = "0.19.1"
44
description = "The official Python library for the isaacus API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
@@ -69,7 +69,7 @@ format = { chain = [
6969
# run formatting again to fix any inconsistencies when imports are stripped
7070
"format:ruff",
7171
]}
72-
"format:docs" = "python scripts/utils/ruffen-docs.py README.md api.md"
72+
"format:docs" = "bash -c 'python scripts/utils/ruffen-docs.py README.md $(find . -type f -name api.md)'"
7373
"format:ruff" = "ruff format"
7474

7575
"lint" = { chain = [

src/isaacus/_utils/_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def is_union(tp: Optional[Type[Any]]) -> bool:
2626
else:
2727
import types
2828

29-
return tp is Union or tp is types.UnionType
29+
return tp is Union or tp is types.UnionType # type: ignore[comparison-overlap]
3030

3131

3232
def is_typeddict(tp: Type[Any]) -> bool:

src/isaacus/_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__ = "isaacus"
4-
__version__ = "0.19.0" # x-release-please-version
4+
__version__ = "0.19.1" # x-release-please-version

src/isaacus/resources/classifications/classifications.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
from __future__ import annotations
44

55
from ..._compat import cached_property
6-
from .universal import (
6+
from ..._resource import SyncAPIResource, AsyncAPIResource
7+
from .universal.universal import (
78
UniversalResource,
89
AsyncUniversalResource,
910
UniversalResourceWithRawResponse,
1011
AsyncUniversalResourceWithRawResponse,
1112
UniversalResourceWithStreamingResponse,
1213
AsyncUniversalResourceWithStreamingResponse,
1314
)
14-
from ..._resource import SyncAPIResource, AsyncAPIResource
1515

1616
__all__ = ["ClassificationsResource", "AsyncClassificationsResource"]
1717

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from .universal import (
4+
UniversalResource,
5+
AsyncUniversalResource,
6+
UniversalResourceWithRawResponse,
7+
AsyncUniversalResourceWithRawResponse,
8+
UniversalResourceWithStreamingResponse,
9+
AsyncUniversalResourceWithStreamingResponse,
10+
)
11+
12+
__all__ = [
13+
"UniversalResource",
14+
"AsyncUniversalResource",
15+
"UniversalResourceWithRawResponse",
16+
"AsyncUniversalResourceWithRawResponse",
17+
"UniversalResourceWithStreamingResponse",
18+
"AsyncUniversalResourceWithStreamingResponse",
19+
]
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Universal
2+
3+
Types:
4+
5+
```python
6+
from isaacus.types.classifications.universal import UniversalClassificationResponse
7+
```
8+
9+
Methods:
10+
11+
- <code title="post /classifications/universal">client.classifications.universal.<a href="./src/isaacus/resources/classifications/universal/universal.py">create</a>(\*\*<a href="src/isaacus/types/classifications/universal/universal_create_params.py">params</a>) -> <a href="./src/isaacus/types/classifications/universal/universal_classification_response.py">UniversalClassificationResponse</a></code>

0 commit comments

Comments
 (0)