From dcce0291028a7ecd714bc891ae165ea335d03057 Mon Sep 17 00:00:00 2001 From: cokelaer Date: Tue, 21 Jan 2020 22:02:58 +0100 Subject: [PATCH] increase version and update doc --- README.rst | 3 --- doc/ChangeLog.rst | 6 ++++++ doc/index.rst | 3 --- setup.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index ac09f21..f4bc8fd 100644 --- a/README.rst +++ b/README.rst @@ -10,9 +10,6 @@ SPECTRUM : Spectral Analysis in Python .. image:: https://coveralls.io/repos/cokelaer/spectrum/badge.png?branch=master :target: https://coveralls.io/r/cokelaer/spectrum?branch=master -.. image:: https://landscape.io/github/cokelaer/spectrum/master/landscape.png - :target: https://landscape.io/github/cokelaer/spectrum/master - .. image:: https://anaconda.org/conda-forge/spectrum/badges/license.svg :target: https://anaconda.org/conda-forge/spectrum diff --git a/doc/ChangeLog.rst b/doc/ChangeLog.rst index 74206f5..0dd01c3 100644 --- a/doc/ChangeLog.rst +++ b/doc/ChangeLog.rst @@ -4,6 +4,12 @@ ChangeLog Summary Version 0.7 (aug 2017) ----------------------- +* 0.7.6: Jan 2019 + + * Accepted 3 PR (typos in docs) + * Fixed bug reported in https://github.com/cokelaer/spectrum/issues/62 + (CORRELOGRAMPSD function) + * 0.7.5: Dec 2018 * add tight_layout in window module. https://github.com/cokelaer/spectrum/issues/52 diff --git a/doc/index.rst b/doc/index.rst index 15e71ff..4a518cc 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -10,9 +10,6 @@ .. image:: https://coveralls.io/repos/cokelaer/spectrum/badge.png?branch=master :target: https://coveralls.io/r/cokelaer/spectrum?branch=master -.. image:: https://landscape.io/github/cokelaer/spectrum/master/landscape.png - :target: https://landscape.io/github/cokelaer/spectrum/master - .. image:: https://anaconda.org/conda-forge/spectrum/badges/license.svg :target: https://anaconda.org/conda-forge/spectrum diff --git a/setup.py b/setup.py index 516a8bc..7f2c397 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ _MAJOR = 0 _MINOR = 7 -_MICRO = 5 +_MICRO = 6 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR)