From 201ca953416bc2d6c0f0722641bbb4b736b8a032 Mon Sep 17 00:00:00 2001 From: nialov Date: Fri, 4 Nov 2022 11:22:08 +0200 Subject: [PATCH] docs: update version to v0.5.0 --- CHANGELOG.md | 19 +++++++++++++++++++ CITATION.cff | 5 +++-- fractopo/__init__.py | 2 +- pyproject.toml | 3 ++- 4 files changed, 25 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4749950..267cdef3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## v0.5.0 (2022-11-04) + +### New Features + +- Implemeted caching and parallel execution of expensive functions + in `Network` analysis. This should speed up (repeated) runs on the + same datasets. This implementation is based on `joblib` which provided + the functionality without issue. + +- (analysis): Implemented plotting length data with the Probability Density + Function (PDF) on the y-axis instead of Complementary Cumulative Number (CCM) + +### Fixes + +- (analysis): Reported `CachedNetwork` deprecation + +Full set of changes: +[`v0.4.1...v0.5.0`](https://github.com/nialov/fractopo/compare/v0.4.1...v0.5.0) + ## v0.4.1 (2022-10-24) ### New Features diff --git a/CITATION.cff b/CITATION.cff index 1aaaa723..9d865d9c 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -6,7 +6,7 @@ authors: given-names: Nikolas orcid: "https://orcid.org/0000-0003-1562-0280" title: "fractopo" -version: "0.4.1.post10.dev0+256e31d" +version: "0.5.0" date-released: "2022-11-01" keywords: - python @@ -15,4 +15,5 @@ contact: - email: "nikolasovaskainen@gmail.com" url: "https://github.com/nialov/fractopo" repository-code: "https://github.com/nialov/fractopo" -doi: "10.5281/zenodo.5517486" \ No newline at end of file +doi: "10.5281/zenodo.5517486" + diff --git a/fractopo/__init__.py b/fractopo/__init__.py index 4cb49109..45dc45d4 100644 --- a/fractopo/__init__.py +++ b/fractopo/__init__.py @@ -16,7 +16,7 @@ from fractopo.analysis.network import Network # noqa: E402 from fractopo.tval.trace_validation import Validation # noqa: E402 -__version__ = "0.4.1.post10.dev0+256e31d" +__version__ = "0.5.0" logging.info( diff --git a/pyproject.toml b/pyproject.toml index fbd5bb4f..b07557c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fractopo" -version = "0.4.1.post10.dev0+256e31d" +version = "0.5.0" description = "Fracture Network Analysis" authors = ["nialov "] readme = "README.rst" @@ -189,3 +189,4 @@ ignore_missing_imports = true +