Skip to content

Commit

Permalink
Release notes and version adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
milcent committed Feb 2, 2020
1 parent 1010942 commit 181c282
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 7 deletions.
11 changes: 9 additions & 2 deletions Demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Current version: 0.2.0"
"### Current version: 0.2.5"
]
},
{
Expand All @@ -37,6 +37,13 @@
"##### `$ git clone http://github.com/milcent/Benford_py.git`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## [Documentation](https://benford-py.readthedocs.io)"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -2598,7 +2605,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.3"
"version": "3.7.6"
}
},
"nbformat": 4,
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Benford for Python

`current version = 0.2.1`
`current version = 0.2.5`

## New in this version

- Lib separated in submodules, for better organization, debugging, and further documentation and testing; and
- Debuted documentation with sphinx and [ReadTheDocs](https://benford-py.readthedocs.io). Mostly the docstrings autodocs functionality for now, but better than nothing.

### In version 0.2.1

### Bug fixes (see [release notes](https://github.com/milcent/benford_py/releases/tag/v0.2.1))

## New in version 0.2.0
## In version 0.2.0

- New Mantissas object, with methods `report`, `show_plot` and `arc_test`, which shows the [Arc Test and Plot](https://github.com/milcent/benford_py/pull/24) (the latter thanks to @im-alexandre);
- Future Deprecation of the `inform` parameter in favor of `verbose` or `report`, dependeing on the caase; and
Expand Down
Binary file modified docs/build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/build/doctrees/index.doctree
Binary file not shown.
9 changes: 9 additions & 0 deletions docs/build/html/_sources/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,12 @@ Indices and tables
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

On GitHub
---------

`Package <https://github.com/milcent/benford_py>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`Demo Jupyter Notebook <https://github.com/milcent/benford_py/blob/master/Demo.ipynb>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 changes: 9 additions & 0 deletions docs/build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,15 @@ <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Pe
<li><p><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></p></li>
<li><p><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></p></li>
</ul>
<div class="section" id="on-github">
<h2>On GitHub<a class="headerlink" href="#on-github" title="Permalink to this headline"></a></h2>
<div class="section" id="id1">
<h3><a class="reference external" href="https://github.com/milcent/benford_py">Package</a><a class="headerlink" href="#id1" title="Permalink to this headline"></a></h3>
</div>
<div class="section" id="id2">
<h3><a class="reference external" href="https://github.com/milcent/benford_py/blob/master/Demo.ipynb">Demo Jupyter Notebook</a><a class="headerlink" href="#id2" title="Permalink to this headline"></a></h3>
</div>
</div>
</div>


Expand Down
2 changes: 1 addition & 1 deletion docs/build/html/searchindex.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,12 @@ Indices and tables
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

On GitHub
---------

`Package <https://github.com/milcent/benford_py>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

`Demo Jupyter Notebook <https://github.com/milcent/benford_py/blob/master/Demo.ipynb>`_
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup

setup(name='benford_py',
version='0.2.1',
version='0.2.5',
description='A library for testing data sets with Bendford\'s Law',
url='https://github.com/milcent/benford_py',
download_url='https://github.com/milcent/benford_py/archive/v0.2.1.tar.gz',
download_url='https://github.com/milcent/benford_py/archive/v0.2.5.tar.gz',
author='Marcel Milcent',
author_email='marcelmilcent@gmail.com',
license='GPLv3.0',
Expand Down

0 comments on commit 181c282

Please sign in to comment.