Skip to content

Commit

Permalink
bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jul 2, 2014
1 parent b71439a commit a8fdd71
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion conda.yaml
@@ -1,6 +1,6 @@
package:
name: toolz
version: "0.6.0"
version: "0.7.0"

build:
number: {{environ.get('BINSTAR_BUILD', 1)}}
Expand Down
19 changes: 10 additions & 9 deletions release-notes
Expand Up @@ -33,21 +33,22 @@ New in 0.6.0
New in 0.6.1


* Avoid generators, favor map. Assists in debugging.
* Cleaner `curry` implementation
* `EqualityHashKey` added to sandbox
* Python 3.4 support
* New `join` operation
* `join`, `groupby`, ... accept non-callable key functions.
* Fix bug in `get` where `get([1], coll)` used to return element rather than
length-one tuple
* `juxt` returns a tuple, not a generator
* `reduceby` no longer requires `default` keyword argument
* Toolz builds on binstar build
* Fix serialization issues for `juxt`, `complement`
* Many speed improvements:
* Cache method lookup
* Faster `merge_sorted` without key
* An additional round of tuning on `groupby`
* Toolz builds on binstar build under mrocklin channel
* Avoid generators, favor map. Assists in debugging.
* Cleaner `curry` implementation
* Fix serialization issues for `juxt`, `complement`
* `reduceby` no longer requires `default` keyword argument
* Fix bug in `get` where `get([1], coll)` used to return element rather than
length-one tuple
* `EqualityHashKey` added to sandbox
* `juxt` returns a tuple, not a generator


New Authors:
Expand Down
2 changes: 1 addition & 1 deletion toolz/__init__.py
Expand Up @@ -17,4 +17,4 @@
# Aliases
comp = compose

__version__ = '0.6.0'
__version__ = '0.7.0'

0 comments on commit a8fdd71

Please sign in to comment.