Skip to content

Commit 619dd73

Browse files
authored
Merge pull request #266 from kayjanw/v0.19.2
V0.19.2
2 parents 2d39953 + 81a759d commit 619dd73

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/pytest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ jobs:
4444
isort --profile black . --check
4545
- name: Test with pytest
4646
run: |
47-
python -m pip install pytest pytest-cov pytest-benchmark coverage
47+
python -m pip install coverage pytest pytest-benchmark pytest-cov
4848
pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=bigtree

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ 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.19.2] - 2024-06-28
810
### Added:
911
- Docs: Add description and credits to playground.
1012
- Misc: Add template for asking question in Discussions.
1113
### Changed:
1214
- Docs: Homepage to include links to playground, modify emoji location.
1315
- Docs: Playground modify code and code snippet layout.
16+
### Fixed:
17+
- Misc: Skip codecov github action for PR from other users.
1418

1519
## [0.19.1] - 2024-06-26
1620
### Changed:
@@ -607,7 +611,8 @@ ignore null attribute columns.
607611
- Utility Iterator: Tree traversal methods.
608612
- Workflow To Do App: Tree use case with to-do list implementation.
609613

610-
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.1...HEAD
614+
[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.2...HEAD
615+
[0.19.2]: https://github.com/kayjan/bigtree/compare/0.19.1...0.19.2
611616
[0.19.1]: https://github.com/kayjan/bigtree/compare/0.19.0...0.19.1
612617
[0.19.0]: https://github.com/kayjan/bigtree/compare/0.18.3...0.19.0
613618
[0.18.3]: https://github.com/kayjan/bigtree/compare/0.18.2...0.18.3

bigtree/__init__.py

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