Skip to content

Commit

Permalink
docs: update version to v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nialov committed Nov 4, 2022
1 parent 00eaa2d commit 201ca95
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 4 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -15,4 +15,5 @@ contact:
- email: "[email protected]"
url: "https://github.com/nialov/fractopo"
repository-code: "https://github.com/nialov/fractopo"
doi: "10.5281/zenodo.5517486"
doi: "10.5281/zenodo.5517486"

2 changes: 1 addition & 1 deletion fractopo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.rst"
Expand Down Expand Up @@ -189,3 +189,4 @@ ignore_missing_imports = true




0 comments on commit 201ca95

Please sign in to comment.