Skip to content

Commit

Permalink
Merge pull request #261 from cpcloud/three-point-three
Browse files Browse the repository at this point in the history
0.3.3 Release
  • Loading branch information
cpcloud committed Jul 8, 2015
2 parents 900380d + f2da646 commit d94de20
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest']
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.extlinks']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand Down Expand Up @@ -283,3 +283,5 @@

# Allow duplicate toc entries.
#epub_tocdup = True

extlinks = dict(issue=('https://github.com/ContinuumIO/odo/issues/%s', '#'))
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ General
drop
perf
add-new-backend
releases


Formats
Expand Down
6 changes: 6 additions & 0 deletions docs/source/releases.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
=============
Release Notes
=============


.. include:: whatsnew/0.3.3.txt
32 changes: 32 additions & 0 deletions docs/source/whatsnew/0.3.3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Release 0.3.3
-------------

:Release: 0.3.3
:Date: July 7th, 2015

New Backends
------------

None

Improved Backends
-----------------

* Implement SQL databases to CSV conversion using native the database dump (:issue:`174`, :issue:`189`, :issue:`191`, :issue:`199`).
* Improve CSV header existence inference (:issue:`192`).
* Non-standard schemas can be passed into :func:`~odo.resource.resource` with the ``schema`` argument (:issue:`223`).

API Changes
-----------

* ``unicode`` strings can be passed in as URIs to :func:`~odo.resource.resource` (:issue:`212`).

Bug Fixes
---------

* Fixed writing compressed CSVs in Python 3 and Windows (:issue:`188`, :issue:`190`).
* Dask API changes (:issue:`226`).
* Fix some tests that would fail on binstar because they weren't properly skipped (:issue:`216`).
* PyTables API compatibility when given a integer valued float (:issue:`236`).
* Default to ``None`` when plucking and a key isn't found (:issue:`228`).
* Fix gzip dispatching on JSON discovery (:issue:`243`).

0 comments on commit d94de20

Please sign in to comment.