File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Changelog
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ main ]
6
+
7
+ jobs :
8
+ changelog :
9
+ name : " Check changelog update"
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : tarides/changelog-check-action@v2
13
+ with :
14
+ changelog : CHANGELOG.md
15
+
16
+ changelog_success :
17
+ name : " Changelog success"
18
+ runs-on : ubuntu-latest
19
+ needs : [changelog]
20
+ steps :
21
+ - run : echo "Changelog workflow completed successfully"
Original file line number Diff line number Diff line change @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Added
11
+
12
+ - CICD: CI workflow
13
+ - CICD: Changelog workflow
14
+ - Complete API documentation
15
+
16
+ ### Fixed
17
+
18
+ - Clean up dead code
19
+ - Correct type annotations
20
+ - Update ` resources.path ` to ` resources.files `
21
+
10
22
## [ 1.0.0] - 2024-10-29
11
23
12
24
- Extract this project from [ foxplot] ( https://github.com/stephane-caron/foxplot )
You can’t perform that action at this time.
0 commit comments