Skip to content

Commit 9fdb3aa

Browse files
authored
Merge pull request #79 from isaacus-dev/release-please--branches--main--changes--next
release: 0.19.0
2 parents eae60d6 + c6b88f0 commit 9fdb3aa

File tree

14 files changed

+34
-57
lines changed

14 files changed

+34
-57
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.18.1"
2+
".": "0.19.0"
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-854d1a74fd0240b79b6a7902200adf22b85d5cb67710abe7c0177b4f8801157f.yml
3-
openapi_spec_hash: 9a141dbe42dfb83a674e69441888776f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-daf4baba7c77b0df59c77b13dd57c56da4900b5b3f95f81a8346ae9762419f95.yml
3+
openapi_spec_hash: 346769e832e482cea4496f92d56dd8b6
44
config_hash: 9040e7359f066240ad536041fb2c5185

CHANGELOG.md

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

3+
## 0.19.0 (2026-02-12)
4+
5+
Full Changelog: [v0.18.1...v0.19.0](https://github.com/isaacus-dev/isaacus-python/compare/v0.18.1...v0.19.0)
6+
7+
### Features
8+
9+
* **api:** revoke ILGS ID consecutive integer promise ([2e34941](https://github.com/isaacus-dev/isaacus-python/commit/2e34941b8dfcf1397f94e20a7a52b92f6a0ed35f))
10+
11+
12+
### Bug Fixes
13+
14+
* **api:** typo in docs ([1dfc52c](https://github.com/isaacus-dev/isaacus-python/commit/1dfc52c3c6c495de8969f37f42ad6010e7bea03e))
15+
* **api:** typo in docs ([93a15f9](https://github.com/isaacus-dev/isaacus-python/commit/93a15f90ac7512bce7c78109d9c350af61f20c63))
16+
317
## 0.18.1 (2026-02-11)
418

519
Full Changelog: [v0.18.0...v0.18.1](https://github.com/isaacus-dev/isaacus-python/compare/v0.18.0...v0.18.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 = "isaacus"
3-
version = "0.18.1"
3+
version = "0.19.0"
44
description = "The official Python library for the isaacus API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

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.18.1" # x-release-please-version
4+
__version__ = "0.19.0" # x-release-please-version

src/isaacus/types/enrichment_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Result(BaseModel):
2020
document: Document
2121
"""
2222
The document enriched into version 1.0.0 of the Isaacus Legal Graph Schema
23-
(IGLS).
23+
(ILGS).
2424
2525
All spans in an enriched document graph are indexed into the Unicode code point
2626
space of a source document.

src/isaacus/types/ilgs/v1/date.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ class Date(BaseModel):
5858
"""
5959

6060
person: Optional[str] = None
61-
"""
62-
A unique identifier for a legal person in the format `per:{index}` where
63-
`{index}` is a non-negative incrementing integer starting from zero.
64-
"""
61+
"""A unique identifier for a legal person in the format `per:{identifier}`."""
6562

6663
mentions: List[Span]
6764
"""

src/isaacus/types/ilgs/v1/document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
class Document(BaseModel):
2525
"""
26-
The document enriched into version 1.0.0 of the Isaacus Legal Graph Schema (IGLS).
26+
The document enriched into version 1.0.0 of the Isaacus Legal Graph Schema (ILGS).
2727
2828
All spans in an enriched document graph are indexed into the Unicode code point space of a source document.
2929

src/isaacus/types/ilgs/v1/external_document.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ class ExternalDocument(BaseModel):
1414

1515
id: str
1616
"""
17-
The unique identifier of the external document in the format `exd:{index}` where
18-
`{index}` is a non-negative incrementing integer starting from zero.
17+
The unique identifier of the external document in the format `exd:{identifier}`.
1918
"""
2019

2120
name: Span

src/isaacus/types/ilgs/v1/location.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ class Location(BaseModel):
1313
"""A location identified within a document."""
1414

1515
id: str
16-
"""
17-
The unique identifier of the location in the format `loc:{index}` where
18-
`{index}` is a non-negative incrementing integer starting from zero.
19-
"""
16+
"""The unique identifier of the location in the format `loc:{identifier}`."""
2017

2118
name: Span
2219
"""A zero-based, half-open span into the Unicode code point space of input text.
@@ -41,10 +38,7 @@ class Location(BaseModel):
4138
"""
4239

4340
parent: Optional[str] = None
44-
"""
45-
A unique identifier for a location in the format `loc:{index}` where `{index}`
46-
is a non-negative incrementing integer starting from zero.
47-
"""
41+
"""A unique identifier for a location in the format `loc:{identifier}`."""
4842

4943
children: List[str]
5044
"""

0 commit comments

Comments
 (0)