diff --git a/CHANGELOG.md b/CHANGELOG.md index dbbafec4..4bfaffae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,19 @@ # Changelog -## Unreleased (2022-02-02) +## v0.2.6 (2022-02-03) ### New Features -- (multi_network): add xyi and branch plotting +- (analysis.multi_network): Enable plotting multiple networks into the same ternary + XYI or branch type plot. ### Fixes -- (analysis): add missing property decorator +- (analysis.network): Add missing property decorator to + `branch_lengths_powerlaw_fit_description`. Full set of changes: -[`v0.2.5...711204e`](https://github.com/nialov/fractopo/compare/v0.2.5...711204e) +[`v0.2.5...v0.2.6`](https://github.com/nialov/fractopo/compare/v0.2.5...v0.2.6) ## v0.2.5 (2022-01-23) diff --git a/CITATION.cff b/CITATION.cff index 257266a4..045c34cd 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.2.5.post29.dev0+711204e" +version: "0.2.6" date-released: "2022-02-02" keywords: - python @@ -22,3 +22,4 @@ doi: "10.5281/zenodo.5517486" + diff --git a/fractopo/__init__.py b/fractopo/__init__.py index b108c9f5..bce14e6c 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.2.5.post29.dev0+711204e" +__version__ = "0.2.6" logging.info( diff --git a/pyproject.toml b/pyproject.toml index 25ce9b7d..bf21df18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fractopo" -version = "0.2.5.post29.dev0+711204e" +version = "0.2.6" description = "Fracture Network Analysis" authors = ["nialov "] readme = "README.rst" @@ -182,3 +182,4 @@ python_version = "3.8" warn_return_any = true warn_unused_configs = true ignore_missing_imports = true +