diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index f9e6555f..7f28e9c0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -44,5 +44,5 @@ jobs: isort --profile black . --check - name: Test with pytest run: | - python -m pip install pytest pytest-cov pytest-benchmark coverage + python -m pip install coverage pytest pytest-benchmark pytest-cov pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=bigtree diff --git a/CHANGELOG.md b/CHANGELOG.md index 050cb2b2..95752ca3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.19.2] - 2024-06-28 ### Added: - Docs: Add description and credits to playground. - Misc: Add template for asking question in Discussions. ### Changed: - Docs: Homepage to include links to playground, modify emoji location. - Docs: Playground modify code and code snippet layout. +### Fixed: +- Misc: Skip codecov github action for PR from other users. ## [0.19.1] - 2024-06-26 ### Changed: @@ -607,7 +611,8 @@ ignore null attribute columns. - Utility Iterator: Tree traversal methods. - Workflow To Do App: Tree use case with to-do list implementation. -[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.1...HEAD +[Unreleased]: https://github.com/kayjan/bigtree/compare/0.19.2...HEAD +[0.19.2]: https://github.com/kayjan/bigtree/compare/0.19.1...0.19.2 [0.19.1]: https://github.com/kayjan/bigtree/compare/0.19.0...0.19.1 [0.19.0]: https://github.com/kayjan/bigtree/compare/0.18.3...0.19.0 [0.18.3]: https://github.com/kayjan/bigtree/compare/0.18.2...0.18.3 diff --git a/bigtree/__init__.py b/bigtree/__init__.py index 97699214..60b32255 100644 --- a/bigtree/__init__.py +++ b/bigtree/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.19.1" +__version__ = "0.19.2" from bigtree.binarytree.construct import list_to_binarytree from bigtree.dag.construct import dataframe_to_dag, dict_to_dag, list_to_dag