Skip to content

Commit 73769e7

Browse files
authored
Merge pull request #58 from isaacus-dev/release-please--branches--main--changes--next
release: 0.5.0
2 parents 58a6bab + dfc0b3e commit 73769e7

File tree

6 files changed

+20
-7
lines changed

6 files changed

+20
-7
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.4.0"
2+
".": "0.5.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: 2
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-213d554b23f35e746460af23dd32bdde471230549ad223518c86d42ea917a180.yml
3-
openapi_spec_hash: 3672281fe031a42fc59e3a2af758a8f8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-f1ac3a46ba560544c348931204998163a9c5e35c40d6096f4b078e38c2714756.yml
3+
openapi_spec_hash: c9ba9f53c0dabdb703461d772020952f
44
config_hash: 1d15d860383a3f6da1ac388297687cc9

CHANGELOG.md

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

3+
## 0.5.0 (2025-04-19)
4+
5+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/isaacus-dev/isaacus-python/compare/v0.4.0...v0.5.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **api:** changed how end offsets are computed
10+
11+
### Features
12+
13+
* **api:** changed how end offsets are computed ([3c96279](https://github.com/isaacus-dev/isaacus-python/commit/3c962792d88ec5abd6ee71d9388cc1a1ba6a80dd))
14+
315
## 0.4.0 (2025-04-19)
416

517
Full Changelog: [v0.3.3...v0.4.0](https://github.com/isaacus-dev/isaacus-python/compare/v0.3.3...v0.4.0)

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.4.0"
3+
version = "0.5.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.4.0" # x-release-please-version
4+
__version__ = "0.5.0" # x-release-please-version

src/isaacus/types/classifications/universal_classification.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
class ClassificationChunk(BaseModel):
1111
end: int
1212
"""
13-
The index of the character in the original text where the chunk ends, beginning
14-
from `0` (such that, in Python, the chunk is equivalent to `text[start:end+1]`).
13+
The index of the character immediately after the last character of the chunk in
14+
the original text, beginning from `0` (such that, in Python, the chunk is
15+
equivalent to `text[start:end]`).
1516
"""
1617

1718
index: int

0 commit comments

Comments
 (0)