Skip to content

Commit 5b7e87c

Browse files
authored
Merge pull request #297 from kayjan/v0.21.1
bump: v0.21.1
2 parents 763e66c + 3e1a6f6 commit 5b7e87c

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ 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

77
## [Unreleased]
8+
9+
## [0.21.1] - 2024-08-29
810
### Changed:
911
- Misc: Import module instead of functions, following Google Python Style Guide.
1012
- Docs: Documentation of `plot_tree` in tree demonstration and installation instructions.
@@ -649,7 +651,8 @@ ignore null attribute columns.
649651
- Utility Iterator: Tree traversal methods.
650652
- Workflow To Do App: Tree use case with to-do list implementation.
651653

652-
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.21.0...HEAD
654+
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.21.1...HEAD
655+
[0.21.1]: https://github.com/kayjan/bigtree/compare/0.21.0...0.21.1
653656
[0.21.0]: https://github.com/kayjan/bigtree/compare/0.20.1...0.21.0
654657
[0.20.1]: https://github.com/kayjan/bigtree/compare/0.20.0...0.20.1
655658
[0.20.0]: https://github.com/kayjan/bigtree/compare/0.19.4...0.20.0

bigtree/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.21.0"
1+
__version__ = "0.21.1"
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

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ dependencies = [
7171

7272
[tool.hatch.envs.default.scripts]
7373
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=bigtree {args} --benchmark-autosave --benchmark-histogram=.benchmarks/histogram --benchmark-json .benchmarks/output.json"
74-
cov2 = "no-cov && coverage report --show-missing --omit='*/workflows/*' {args} --benchmark-autosave --benchmark-histogram=.benchmarks/histogram --benchmark-json .benchmarks/output.json"
75-
no-cov = "pytest . {args}"
74+
no-cov = "test && coverage report --show-missing --omit='*/workflows/*' --benchmark-autosave --benchmark-histogram=.benchmarks/histogram --benchmark-json .benchmarks/output.json"
75+
test = "pytest . {args}"
7676
lint = "black -l 88 ."
7777
sort = "isort --profile black ."
7878
mypy-type = "mypy bigtree"

0 commit comments

Comments
 (0)