Skip to content

Commit e18a779

Browse files
committed
REL: v0.10.0
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).
1 parent 51c7b2b commit e18a779

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

cycler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
from operator import mul, add
5050
import copy
5151

52-
__version__ = '0.9.0.post1'
52+
__version__ = '0.10.0'
5353

5454

5555
def _process_keys(left, right):

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = '0.9.0'
74+
version = '0.10.0'
7575
# The full version, including alpha/beta/rc tags.
76-
release = '0.9.0'
76+
release = '0.10.0'
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from setuptools import setup
22

33
setup(name='cycler',
4-
version='0.9.0.post1',
4+
version='0.10.0',
55
author='Thomas A Caswell',
6-
author_email='tcaswell@gmail.com',
6+
author_email='matplotlib-users@python.org',
77
py_modules=['cycler'],
88
description='Composable style cycles',
99
url='http://github.com/matplotlib/cycler',

0 commit comments

Comments
 (0)