File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed
Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 88 types : [opened, synchronize]
99
1010jobs :
11- build-linux :
11+ codecov :
1212 runs-on : ubuntu-latest
1313 permissions :
1414 pull-requests : write
Original file line number Diff line number Diff line change 88 types : [opened, synchronize]
99
1010jobs :
11- build-linux :
11+ test :
1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
Original file line number Diff line number Diff line change 3131 - name : Set env var
3232 id : set-env-var
3333 run : |
34- VERSION_NUMBER=$(python -c "import bigtree; print(bigtree.__version__)")
35- echo "VERSION_NUMBER=${VERSION_NUMBER} " >> $GITHUB_OUTPUT
34+ VERSION_NUMBER=
35+ echo "VERSION_NUMBER=$(python -c 'import bigtree; print(bigtree.__version__)') " >> $GITHUB_OUTPUT
3636 - name : Create release
3737 uses : ncipollo/release-action@v1
3838 env :
4141 name : v${{ env.VERSION_NUMBER }}
4242 tag : ${{ env.VERSION_NUMBER }}
4343 artifacts : " *.zip,*.tar.gz"
44+ generateReleaseNotes : true
4445 makeLatest : true
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 0.13.3] - 2023-10-17
8+ ### Added
9+ - Misc: Add automatic release notes with content into GitHub workflow.
10+
711## [ 0.13.2] - 2023-10-17
812### Added
913- Misc: Add automatic release notes into GitHub workflow.
@@ -350,6 +354,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
350354- Utility Iterator: Tree traversal methods.
351355- Workflow To Do App: Tree use case with to-do list implementation.
352356
357+ [ 0.13.3 ] : https://github.com/kayjan/bigtree/compare/0.13.2...0.13.3
353358[ 0.13.2 ] : https://github.com/kayjan/bigtree/compare/0.13.1...0.13.2
354359[ 0.13.1 ] : https://github.com/kayjan/bigtree/compare/0.13.0...0.13.1
355360[ 0.13.0 ] : https://github.com/kayjan/bigtree/compare/0.12.5...0.13.0
Original file line number Diff line number Diff line change 1- __version__ = "0.13.2 "
1+ __version__ = "0.13.3 "
22
33from bigtree .binarytree .construct import list_to_binarytree
44from bigtree .dag .construct import dataframe_to_dag , dict_to_dag , list_to_dag
You can’t perform that action at this time.
0 commit comments