Skip to content

Commit

Permalink
Hotfix v1.0.1
Browse files Browse the repository at this point in the history
Version bump and changelog for hotfix candidate.
  • Loading branch information
bbengfort committed Oct 6, 2019
1 parent 9856335 commit 753e4ba
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
Changelog
=========

Hotfix 1.0.1
------------

* Tag: v1.0.1_
* Deployed
* Contributors: Benjamin Bengfort, Rebecca Bilbro, Kristen McIntyre

.. warning:: **Major API change**: the ``poof()`` method is now deprecated, please use ``show()`` instead. After a significant discussion with community members we have deprecated our original "make the magic happen" method due to concerns about the usage of the word. We've renamed the original method to and created a stub method with the original name that issues a deprecation warning and calls ``show()``.

Changes:
- Changes ``poof()`` to ``show()``.
- Updated clustering and regression example notebooks.
- Fixes a syntax error in Python 3.5 and earlier.
- Updated Manifold documentation to fix example bug.
- Added advisors names to the release changelog.
- Adds advisory board minutes for Fall 2019.
- Updates our Travis-CI semi-secure token for Slack integration.


.. _v1.0.1: https://github.com/DistrictDataLabs/yellowbrick/releases/tag/v1.0.1

Version 1.0
-----------

Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
## Test Constants
##########################################################################

EXPECTED_VERSION = "1.0.post1"
EXPECTED_VERSION = "1.0.1"


##########################################################################
Expand Down
6 changes: 3 additions & 3 deletions yellowbrick/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
__version_info__ = {
"major": 1,
"minor": 0,
"micro": 0,
"micro": 1,
"releaselevel": "final",
"post": 1,
"serial": 15,
"post": 0,
"serial": 16,
}

##########################################################################
Expand Down

0 comments on commit 753e4ba

Please sign in to comment.