Skip to content

Commit 1dfef55

Browse files
authored
Merge pull request #104 from kayjan/v0.13.3
V0.13.3
2 parents becd3dd + e0584dd commit 1dfef55

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
types: [opened, synchronize]
99

1010
jobs:
11-
build-linux:
11+
codecov:
1212
runs-on: ubuntu-latest
1313
permissions:
1414
pull-requests: write

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
types: [opened, synchronize]
99

1010
jobs:
11-
build-linux:
11+
test:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:

.github/workflows/python-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
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:
@@ -41,4 +41,5 @@ jobs:
4141
name: v${{ env.VERSION_NUMBER }}
4242
tag: ${{ env.VERSION_NUMBER }}
4343
artifacts: "*.zip,*.tar.gz"
44+
generateReleaseNotes: true
4445
makeLatest: true

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and 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

bigtree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.13.2"
1+
__version__ = "0.13.3"
22

33
from bigtree.binarytree.construct import list_to_binarytree
44
from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag

0 commit comments

Comments
 (0)