Skip to content

Commit

Permalink
RELEASE: v0.2.1 setup
Browse files Browse the repository at this point in the history
  • Loading branch information
njsmith committed Aug 20, 2013
1 parent b0ee5ef commit 93ee6dc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions doc/changes.rst
Expand Up @@ -3,6 +3,21 @@ Changes

.. currentmodule:: patsy

v0.2.1
------

* Fixed a nasty bug in missing value handling where, if missing values
were present, ``dmatrix(..., result_type="dataframe")`` would always
crash, and ``dmatrices("y ~ 1")`` would produce left- and right-hand
side matrices that had different numbers of rows. (As far as I can
tell, this bug could not possibly cause incorrect results, only
crashes, since it always involved the creation of matrices with
incommensurate shapes. Therefore there is no need to worry about the
accuracy of any analyses that were successfully performed with
v0.2.0.)
* Modified ``patsy/__init__.py`` to work around limitations in
py2exe/py2app/etc.

v0.2.0
------

Expand Down
2 changes: 1 addition & 1 deletion patsy/__init__.py
Expand Up @@ -8,7 +8,7 @@

import sys

__version__ = "0.2.0+dev"
__version__ = "0.2.1"

# Do this first, to make it easy to check for warnings while testing:
import os
Expand Down
2 changes: 1 addition & 1 deletion release-checklist.txt
Expand Up @@ -3,7 +3,7 @@
* make sure appropriate ..versionadded:: directives are present
* make sure docs are up to date
* verify that the ">97% coverage" claim in overview.rst is still true.
*'cd docs; make html -- check that there are no warnings
* cd docs; make html -- check that there are no warnings
* check MANIFEST.in
* update version in doc/changes.rst, setup.py, patsy/__init__.py
* make sure there are no uncommitted changes
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@

setup(
name="patsy",
version="0.2.0+dev",
version="0.2.1",
description=DESC,
long_description=LONG_DESC,
author="Nathaniel J. Smith",
Expand Down

0 comments on commit 93ee6dc

Please sign in to comment.