diff --git a/CHANGELOG.md b/CHANGELOG.md index 6586d80..9db5eeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0] - 2022-10-18 ### Added - coordinates and sensor layout XML files for the Geodesic Head Web @@ -89,7 +90,8 @@ In `Reader.get_physical_samples_from_epoch()`: - Parse key elements in categories.xml files with `mffpy.xml_files.Categories` class. - Incorporate `cached_property` dependency into `mffpy` library. -[Unreleased]: https://github.com/bel-public/mffpy/compare/v0.7.4...HEAD +[Unreleased]: https://github.com/bel-public/mffpy/compare/v0.8.0...HEAD +[0.8.0]: https://github.com/bel-public/mffpy/compare/v0.7.4...v0.8.0 [0.7.4]: https://github.com/bel-public/mffpy/compare/v0.7.3...v0.7.4 [0.7.3]: https://github.com/bel-public/mffpy/compare/v0.7.2...v0.7.3 [0.7.2]: https://github.com/bel-public/mffpy/compare/v0.7.1...v0.7.2 diff --git a/README.md b/README.md index c6f7811..8b3890f 100644 --- a/README.md +++ b/README.md @@ -32,24 +32,25 @@ $ pre-commit install ### Test Coverage ``` -=================================== test session starts ==================================== -platform darwin -- Python 3.6.13, pytest-7.0.1, pluggy-1.0.0 -rootdir: /Users/admin/Repositories/mffpy-public -plugins: cov-2.6.1 -collected 119 items - -mffpy/tests/test_cached_property.py .. [ 1%] -mffpy/tests/test_devices.py ........... [ 10%] -mffpy/tests/test_dict2xml.py . [ 11%] -mffpy/tests/test_header_block.py .. [ 13%] -mffpy/tests/test_mffdir.py .... [ 16%] -mffpy/tests/test_raw_bin_files.py .................. [ 31%] -mffpy/tests/test_reader.py ...................... [ 50%] -mffpy/tests/test_writer.py ........... [ 59%] -mffpy/tests/test_xml_files.py ........................................... [ 95%] -mffpy/tests/test_zipfile.py ..... [100%] - ----------- coverage: platform darwin, python 3.6.13-final-0 ---------- +============================= test session starts ============================== +platform linux -- Python 3.6.7, pytest-7.0.1, pluggy-1.0.0 +rootdir: /home/runner/work/mffpy/mffpy +plugins: cov-4.0.0 +collected 122 items + +mffpy/tests/test_cached_property.py .. [ 1%] +mffpy/tests/test_devices.py ............. [ 12%] +mffpy/tests/test_dict2xml.py . [ 13%] +mffpy/tests/test_header_block.py .. [ 14%] +mffpy/tests/test_mffdir.py .... [ 18%] +mffpy/tests/test_raw_bin_files.py .................. [ 32%] +mffpy/tests/test_reader.py ...................... [ 50%] +mffpy/tests/test_writer.py ........... [ 59%] +mffpy/tests/test_xml_files.py .......................................... [ 94%] +.. [ 95%] +mffpy/tests/test_zipfile.py ..... [100%] + +----------- coverage: platform linux, python 3.6.7-final-0 ----------- Name Stmts Miss Cover ----------------------------------------------------------------- mffpy/__init__.py 4 0 100% @@ -67,7 +68,7 @@ mffpy/mffdir.py 92 7 92% mffpy/raw_bin_files.py 113 0 100% mffpy/reader.py 110 2 98% mffpy/tests/__init__.py 0 0 100% -mffpy/tests/conftest.py 11 4 64% +mffpy/tests/conftest.py 11 0 100% mffpy/tests/test_cached_property.py 33 0 100% mffpy/tests/test_devices.py 12 0 100% mffpy/tests/test_dict2xml.py 16 0 100% @@ -80,13 +81,13 @@ mffpy/tests/test_xml_files.py 202 1 99% mffpy/tests/test_zipfile.py 34 0 100% mffpy/version.py 1 0 100% mffpy/writer.py 71 0 100% -mffpy/xml_files.py 552 18 97% +mffpy/xml_files.py 554 18 97% mffpy/zipfile.py 47 0 100% ----------------------------------------------------------------- -TOTAL 2021 44 98% +TOTAL 2023 40 98% -=================================== 119 passed in 6.46s ==================================== +============================= 122 passed in 7.19s ============================== ``` ## View the Docs diff --git a/mffpy/version.py b/mffpy/version.py index fd1276a..7c9b6b0 100644 --- a/mffpy/version.py +++ b/mffpy/version.py @@ -1 +1 @@ -__version__ = "0.7.4-develop" +__version__ = "0.8.0-develop"