diff --git a/doc/releases/v0.7.1.txt b/doc/releases/v0.7.1.txt index ff0ca3a38d..3aacbf66ce 100644 --- a/doc/releases/v0.7.1.txt +++ b/doc/releases/v0.7.1.txt @@ -1,5 +1,5 @@ -v0.7.1 (Unreleased) +v0.7.1 (June 2016) ------------------- - Added the ability to put "caps" on the error bars that are drawn by :func:`barplot` or :func:`pointplot` (and, by extension, :func:`factorplot`). Additionally, the line width of the error bars can now be controlled. These changes involve the new parameters ``capsize`` and ``errwidth``. See the `github pull request `_ for examples of usage. diff --git a/doc/tutorial/aesthetics.ipynb b/doc/tutorial/aesthetics.ipynb index c792829b44..49c7a2a14d 100644 --- a/doc/tutorial/aesthetics.ipynb +++ b/doc/tutorial/aesthetics.ipynb @@ -465,4 +465,4 @@ }, "nbformat": 4, "nbformat_minor": 0 -} +} \ No newline at end of file diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index 0be879984a..902d861e90 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -7,6 +7,8 @@ What's new in the package A catalog of new features, improvements, and bug-fixes in each release. +.. include:: releases/v0.7.1.txt + .. include:: releases/v0.7.0.txt .. include:: releases/v0.6.0.txt diff --git a/seaborn/__init__.py b/seaborn/__init__.py index 9aa7c5cb8e..49657f17c9 100644 --- a/seaborn/__init__.py +++ b/seaborn/__init__.py @@ -20,4 +20,4 @@ # Set default aesthetics set() -__version__ = "0.8.dev" +__version__ = "0.7.1" diff --git a/setup.py b/setup.py index c3c9515523..76ec635718 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ URL = 'http://stanford.edu/~mwaskom/software/seaborn/' LICENSE = 'BSD (3-clause)' DOWNLOAD_URL = 'https://github.com/mwaskom/seaborn/' -VERSION = '0.8.dev' +VERSION = '0.7.1' try: from setuptools import setup