Skip to content

Commit

Permalink
Bumping to v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LRydin committed Jun 15, 2022
1 parent 98cc996 commit 6d6cd1e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions MFDFA/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
from . import singspect

__name__ = "MFDFA"
__version__ = "0.4.1"
__version__ = "0.4.2"
__author__ = "Leonardo Rydin Gorjão"
__copyright__ = "Copyright 2019-2021 Leonardo Rydin Gorjão, MIT License"
__copyright__ = "Copyright 2019-2022 Leonardo Rydin Gorjão, MIT License"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ print('Estimated H = '+'{:.3f}'.format(H_hat[0]))
You can find more about multifractality in the [documentation](https://mfdfa.readthedocs.io/en/latest/1dLevy.html).

# Changelog
- Version 0.4.2 - Corrected spectral plots. Added [examples](https://github.com/LRydin/MFDFA/tree/master/examples) from the paper.
- Version 0.4.1 - Added conventional spectral plots as _h(q)_ vs _q_, _τ(q)_ vs _q_, and _f(α)_ vs _α_.
- Version 0.4 - EMD is now optional. Restored back compatibility: py3.3 to py3.9. For EMD py3.6 or larger is needed.
- Version 0.3 - Adding EMD detrending. First release. PyPI code.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
author = 'Leonardo Rydin'

# The full version, including alpha/beta/rc tags
release = '0.4.1'
version = '0.4.1'
release = '0.4.2'
version = '0.4.2'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="MFDFA",
version="0.4.1",
version="0.4.2",
author="Leonardo Rydin Gorjao",
author_email="leonardo.rydin@gmail.com",
description="Multifractal Detrended Fluctuation Analysis in Python",
Expand All @@ -22,5 +22,5 @@
"Operating System :: OS Independent",
],
license="MIT License",
python_requires='>=3.5',
python_requires='>=3.6',
)

0 comments on commit 6d6cd1e

Please sign in to comment.