Skip to content

Commit

Permalink
Pre-alpha release v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-bunn committed Nov 3, 2017
1 parent 859fcde commit c08e758
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 18 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -8,8 +8,18 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_

*unreleased*
------------


`0.0.5`_ (*2017-11-03*)
-----------------------
* added enforcement for strict date parsing in ``translate_date`` rule
* fixing the messy structure of all rules (cleaner and more intuitive use)
* added ``rename_columns`` and ``order_columns`` record rules
* fixed the naming of ``add_columns`` and ``remove_columns``
* fixed the messy structure of all rules (cleaner and more intuitive use)
* fixed documentation to match new rule structure
* fixed all existing tests to match new rule structure
* removed the ``substitute`` value rule (utilize ``translate_text`` instead)
* removed extraneous badges from README and docuemtnation index


`0.0.4`_ (*2017-10-26*)
Expand Down Expand Up @@ -47,6 +57,7 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_
* fixed the project's base structure for PY2 compatability


.. _0.0.5: https://github.com/stephen-bunn/sandpaper/releases/tag/v0.0.5
.. _0.0.4: https://github.com/stephen-bunn/sandpaper/releases/tag/v0.0.4
.. _0.0.3: https://github.com/stephen-bunn/sandpaper/releases/tag/v0.0.3
.. _0.0.2: https://github.com/stephen-bunn/sandpaper/releases/tag/v0.0.2
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -63,9 +63,9 @@
# built documents.
#
# The short X.Y version.
version = '0.0.4'
version = '0.0.5'
# The full version, including alpha/beta/rc tags.
release = '0.0.4'
release = '0.0.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 2 additions & 8 deletions requirements.txt
@@ -1,15 +1,9 @@
pyexcel
path.py
braceexpand
six
regex
pyexcel
pyexcel-io
pyexcel-xls
futures
psutil
dateparser
simplejson
pyexcel-xlsx
pyexcel-io

# NOTE: required for readthedocs.io
flask-sphinx-themes
2 changes: 1 addition & 1 deletion sandpaper/__version__.py
Expand Up @@ -10,7 +10,7 @@

__name__ = 'sandpaper'
__description__ = 'Simplified table-type data normalization'
__version__ = '0.0.4'
__version__ = '0.0.5'
__author__ = 'Stephen Bunn'
__contact__ = 'stephen@bunn.io'
__license__ = 'MIT License'
6 changes: 0 additions & 6 deletions setup.py
Expand Up @@ -13,17 +13,11 @@
CURDIR = os.path.abspath(os.path.dirname(__file__))
REQUIRES = [
'six',
'futures',
'regex',
'path.py',
'braceexpand',
'pyexcel',
'pyexcel-io',
'pyexcel-xls',
'pyexcel-xlsx',
'psutil',
'dateparser',
'simplejson',
]
RELEASE = {}

Expand Down

0 comments on commit c08e758

Please sign in to comment.