Skip to content

Commit

Permalink
REL: v0.10.0
Browse files Browse the repository at this point in the history
Feature release for `cycler`.  This release includes a number of new
features:

 - `Cycler` objecst learned to generate an `itertools.cycle` by calling
   them, a-la a generator.
 - `Cycler` objects learned to change the name of a  key via the
   new `.change_key(old_key, new_key)` method.
 - `Cycler` objects learned how to compare each other and determine if
   they are equal or not (`==`).
 - `Cycler` objects learned how to join another `Cycler` to be
   concatenated into a singel longer `Cycler` via `concat` method of function.
   `A.concat(B)` or `concat(A, B)`.
 - The `cycler` factory function learned to construct a complex `Cycler`
   from iterables provided as keyword arguments.
 - `Cycler` objects learn do show their insides with the `by_key` method
   which returns a dictionary of lists (instead of an iterable of dictionaries).
  • Loading branch information
tacaswell committed Feb 16, 2016
1 parent 51c7b2b commit e18a779
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cycler.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from operator import mul, add
import copy

__version__ = '0.9.0.post1'
__version__ = '0.10.0'


def _process_keys(left, right):
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
# built documents.
#
# The short X.Y version.
version = '0.9.0'
version = '0.10.0'
# The full version, including alpha/beta/rc tags.
release = '0.9.0'
release = '0.10.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from setuptools import setup

setup(name='cycler',
version='0.9.0.post1',
version='0.10.0',
author='Thomas A Caswell',
author_email='tcaswell@gmail.com',
author_email='matplotlib-users@python.org',
py_modules=['cycler'],
description='Composable style cycles',
url='http://github.com/matplotlib/cycler',
Expand Down

0 comments on commit e18a779

Please sign in to comment.