File tree 3 files changed +22
-2
lines changed
3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 80
80
with :
81
81
files : dist/*
82
82
body : ${{ steps.extract-release-notes.outputs.release_notes }}
83
+
84
+ update-docs :
85
+ name : Trigger docs rebuild
86
+ needs : publish-pypi
87
+ runs-on : ubuntu-latest
88
+ steps :
89
+ - name : Trigger docs rebuild
90
+ run : |
91
+ curl -X POST https://api.github.com/repos/cleanlab/cleanlab-studio-docs/dispatches \
92
+ -H 'Accept: application/vnd.github+json' \
93
+ -H 'Authorization: Bearer ${{ secrets.REBUILD_DOCS_TOKEN }}' \
94
+ --data '{"event_type": "docs_rebuild"}'
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.0.1a6] - 2025-02-14
11
+
12
+ ### Changed
13
+
14
+ - Small improvements to documentation.
15
+
16
+
10
17
## [ 0.0.1a5] - 2025-02-12
11
18
12
19
### Added
@@ -43,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
43
50
44
51
- Pre-release of the Cleanlab Codex Python client.
45
52
46
- [ Unreleased ] : https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a5...HEAD
53
+ [ Unreleased ] : https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a6...HEAD
54
+ [ 0.0.1a6 ] : https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a5...v0.0.1a6
47
55
[ 0.0.1a5 ] : https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a4...v0.0.1a5
48
56
[ 0.0.1a4 ] : https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a3...v0.0.1a4
49
57
[ 0.0.1a3 ] : https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a2...v0.0.1a3
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: MIT
2
- __version__ = "0.0.1a5 "
2
+ __version__ = "0.0.1a6 "
You can’t perform that action at this time.
0 commit comments