Skip to content

Commit 201ca95

Browse files
committed
docs: update version to v0.5.0
1 parent 00eaa2d commit 201ca95

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## v0.5.0 (2022-11-04)
4+
5+
### New Features
6+
7+
- Implemeted caching and parallel execution of expensive functions
8+
in `Network` analysis. This should speed up (repeated) runs on the
9+
same datasets. This implementation is based on `joblib` which provided
10+
the functionality without issue.
11+
12+
- (analysis): Implemented plotting length data with the Probability Density
13+
Function (PDF) on the y-axis instead of Complementary Cumulative Number (CCM)
14+
15+
### Fixes
16+
17+
- (analysis): Reported `CachedNetwork` deprecation
18+
19+
Full set of changes:
20+
[`v0.4.1...v0.5.0`](https://github.com/nialov/fractopo/compare/v0.4.1...v0.5.0)
21+
322
## v0.4.1 (2022-10-24)
423

524
### New Features

CITATION.cff

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors:
66
given-names: Nikolas
77
orcid: "https://orcid.org/0000-0003-1562-0280"
88
title: "fractopo"
9-
version: "0.4.1.post10.dev0+256e31d"
9+
version: "0.5.0"
1010
date-released: "2022-11-01"
1111
keywords:
1212
- python
@@ -15,4 +15,5 @@ contact:
1515
- email: "nikolasovaskainen@gmail.com"
1616
url: "https://github.com/nialov/fractopo"
1717
repository-code: "https://github.com/nialov/fractopo"
18-
doi: "10.5281/zenodo.5517486"
18+
doi: "10.5281/zenodo.5517486"
19+

fractopo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from fractopo.analysis.network import Network # noqa: E402
1717
from fractopo.tval.trace_validation import Validation # noqa: E402
1818

19-
__version__ = "0.4.1.post10.dev0+256e31d"
19+
__version__ = "0.5.0"
2020

2121

2222
logging.info(

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fractopo"
3-
version = "0.4.1.post10.dev0+256e31d"
3+
version = "0.5.0"
44
description = "Fracture Network Analysis"
55
authors = ["nialov <nikolasovaskainen@gmail.com>"]
66
readme = "README.rst"
@@ -189,3 +189,4 @@ ignore_missing_imports = true
189189

190190

191191

192+

0 commit comments

Comments
 (0)