Skip to content

Commit 82c4a87

Browse files
authored
fix broken link in docstring (#97)
* fix broken link in docstring * bump version and update changelog
1 parent 42c4a4d commit 82c4a87

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.25] 2025-07-17
11+
12+
- Fix broken link in docstring
13+
1014
## [1.0.24] 2025-07-10
1115

1216
- Remove `Validator` class, move `validate()` functionality to `Project` class. Adds conversational support for validation.
@@ -116,7 +120,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
116120

117121
- Initial release of the `cleanlab-codex` client library.
118122

119-
[Unreleased]: https://github.com/cleanlab/cleanlab-codex/compare/v1.0.24...HEAD
123+
[Unreleased]: https://github.com/cleanlab/cleanlab-codex/compare/v1.0.25...HEAD
124+
[1.0.25]: https://github.com/cleanlab/cleanlab-codex/compare/v1.0.24...v1.0.25
120125
[1.0.24]: https://github.com/cleanlab/cleanlab-codex/compare/v1.0.23...v1.0.24
121126
[1.0.23]: https://github.com/cleanlab/cleanlab-codex/compare/v1.0.22...v1.0.23
122127
[1.0.22]: https://github.com/cleanlab/cleanlab-codex/compare/v1.0.21...v1.0.22

src/cleanlab_codex/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# SPDX-License-Identifier: MIT
2-
__version__ = "1.0.24"
2+
__version__ = "1.0.25"

src/cleanlab_codex/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __str__(self) -> str:
3838
class Project:
3939
"""Represents a Codex project.
4040
41-
To integrate a Codex project into your RAG/Agentic system, we recommend using one of our abstractions such as [`Validator`](/codex/api/python/validator).
41+
To integrate a Codex project into your RAG/Agentic system, we recommend using the [`Project.validate()` method](/codex/api/python/project#method-validate).
4242
"""
4343

4444
def __init__(self, sdk_client: _Codex, project_id: str, *, verify_existence: bool = True):

0 commit comments

Comments
 (0)