Skip to content

Commit a8fdd71

Browse files
committed
bump version to 0.7.0
1 parent b71439a commit a8fdd71

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

conda.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: toolz
3-
version: "0.6.0"
3+
version: "0.7.0"
44

55
build:
66
number: {{environ.get('BINSTAR_BUILD', 1)}}

release-notes

+10-9
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,22 @@ New in 0.6.0
3333
New in 0.6.1
3434

3535

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

5253

5354
New Authors:

toolz/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# Aliases
1818
comp = compose
1919

20-
__version__ = '0.6.0'
20+
__version__ = '0.7.0'

0 commit comments

Comments
 (0)