Skip to content

Commit

Permalink
chore(VER): bump v0.4.0-->v.5.0; CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
ankostis committed May 14, 2020
1 parent 11f7d7f commit 0d0d73b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
8 changes: 6 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.pythonPath": "venv/bin/python",
"python.pythonPath": ".venv/bin/python",
"python.testing.pytestArgs": [
"--doctest-modules",
"--doctest-report", "ndiff",
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"cSpell.words": [
"BACKPORT",
"Quickstart"
]
}
13 changes: 12 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,18 @@ Rejected TODOs:
Changelog
=========

v0.3.5 (5-Apr-2020): Auto-default Pandel
v0.5.0 (14-May-2020): Drop PY3.5 & OrderedDict, fix null-check np-arrays
------------------------------------------------------------------------
+ DROP PY3.5 for it has no ordered dictionaries

+ replace the use of OrderedDict with vanilla (PY3.6) dicts.

+ FIX(pandel): treat np-arrays as booleans by checking their size, recommended
in `numpy/numpy#9583 <https://github.com/numpy/numpy/issues/9583>`_,
to handle np.arrays's future boolean behavior (yet deprecated).


v0.4.0 (5-Apr-2020): Auto-default Pandel
----------------------------------------
- FEAT(PANDEL): support auto defaulting/removing `nulls` with jsonschema validation.
- FIX(pandel): up-to-date patches to jsonschema for traversing pandas
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ pandalone: process data-trees with relocatable-paths
**pandalone** is a collection of utilities for working with *hierarchical-data*
using *relocatable-paths*.

:Release: 0.4.0
:Date: 2020-04-05 23:26:00
:Release: 0.5.0
:Date: 2020-05-14 23:59
:Documentation: https://pandalone.readthedocs.org/
:Source: https://github.com/pandalone/pandalone
:PyPI repo: https://pypi.python.org/pypi/pandalone
Expand Down Expand Up @@ -205,7 +205,7 @@ First run :command:`python` or :command:`ipython` and try to import the project
>>> import pandalone

>>> pandalone.__version__ ## Check version once more.
'0.4.0'
'0.5.0'

>>> pandalone.__file__ ## To check where it was installed. # doctest: +SKIP
/usr/local/lib/site-package/pandalone-...
Expand Down
4 changes: 2 additions & 2 deletions pandalone/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# You may not use this work except in compliance with the Licence.
# You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl
"""Authoritative project's version-info"""
__version__ = "0.4.0" # PEP 440 versioning. Also update README.rst's.
__updated__ = "2020-04-05 23:26:00"
__version__ = "0.5.0" # PEP 440 versioning. Also update README.rst's.
__updated__ = "2020-05-14 23:59"
version = __version__

0 comments on commit 0d0d73b

Please sign in to comment.