Skip to content

Commit 81dbbb3

Browse files
authoredFeb 14, 2025··
trigger docs update on new release (#37)
* trigger docs update on new release * update version + changelog
1 parent 4e8d15b commit 81dbbb3

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed
 

‎.github/workflows/release.yml

+12
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,15 @@ jobs:
8080
with:
8181
files: dist/*
8282
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"}'

‎CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.1a6] - 2025-02-14
11+
12+
### Changed
13+
14+
- Small improvements to documentation.
15+
16+
1017
## [0.0.1a5] - 2025-02-12
1118

1219
### Added
@@ -43,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4350

4451
- Pre-release of the Cleanlab Codex Python client.
4552

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
4755
[0.0.1a5]: https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a4...v0.0.1a5
4856
[0.0.1a4]: https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a3...v0.0.1a4
4957
[0.0.1a3]: https://github.com/cleanlab/cleanlab-codex/compare/v0.0.1a2...v0.0.1a3

‎src/cleanlab_codex/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# SPDX-License-Identifier: MIT
2-
__version__ = "0.0.1a5"
2+
__version__ = "0.0.1a6"

0 commit comments

Comments
 (0)
Please sign in to comment.