Skip to content

Commit

Permalink
Merge branch 'release/0.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
milcent committed Jan 20, 2020
2 parents b3a32e1 + 24298a9 commit 7f338ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Benford for Python

`current version = 0.2.0`
`current version = 0.2.1`

## New in version 0.2
## New in this version

### Bug fixes (see [release notes]())

## New 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
2 changes: 1 addition & 1 deletion benford/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .benford import *

__version__ = '0.2.0'
__version__ = '0.2.1'

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.0',
version='0.2.1',
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.0.tar.gz',
download_url='https://github.com/milcent/benford_py/archive/v0.2.1.tar.gz',
author='Marcel Milcent',
author_email='marcelmilcent@gmail.com',
license='GPLv3.0',
Expand Down

0 comments on commit 7f338ed

Please sign in to comment.