0.3.1 release

This commit is contained in:
jab 2014-10-11 12:39:30 -04:00
parent c9497f05c5
commit 81e89f54b2
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ Installation
Releases
--------
[ `PyPI`_ ] | [ `Warehouse`_ ]
See `PyPI`_ or `Warehouse`_.
Status
------
@ -18,11 +18,11 @@ Status
| ``master`` | .. image:: https://readthedocs.org/projects/bidict/badge/?version=master | .. image:: https://travis-ci.org/jab/bidict.svg?branch=master |
| | :target: https://bidict.readthedocs.org/en/master/ | :target: https://travis-ci.org/jab/bidict |
+------------+--------------------------------------------------------------------------+---------------------------------------------------------------+
| ``v0.3.0`` | .. image:: https://readthedocs.org/projects/bidict/badge/?version=latest | .. image:: https://travis-ci.org/jab/bidict.svg?tag=0.3.0 |
| ``v0.3.1`` | .. image:: https://readthedocs.org/projects/bidict/badge/?version=latest | .. image:: https://travis-ci.org/jab/bidict.svg?tag=0.3.1 |
| | :target: https://bidict.readthedocs.org/en/latest/ | :target: https://travis-ci.org/jab/bidict |
+------------+--------------------------------------------------------------------------+---------------------------------------------------------------+
Please see https://bidict.readthedocs.org or bidict.py for more documentation.
See https://bidict.readthedocs.org or bidict.py for more documentation.
.. _PyPI: https://pypi.python.org/pypi/bidict
.. _Warehouse: https://warehouse.python.org/project/bidict/

View File

@ -14,7 +14,7 @@ Status
| ``master`` | .. image:: https://readthedocs.org/projects/bidict/badge/?version=master | .. image:: https://travis-ci.org/jab/bidict.svg?branch=master |
| | :target: https://bidict.readthedocs.org/en/master/ | :target: https://travis-ci.org/jab/bidict |
+------------+--------------------------------------------------------------------------+---------------------------------------------------------------+
| ``v0.3.0`` | .. image:: https://readthedocs.org/projects/bidict/badge/?version=latest | .. image:: https://travis-ci.org/jab/bidict.svg?tag=0.3.0 |
| ``v0.3.1`` | .. image:: https://readthedocs.org/projects/bidict/badge/?version=latest | .. image:: https://travis-ci.org/jab/bidict.svg?tag=0.3.1 |
| | :target: https://bidict.readthedocs.org/en/latest/ | :target: https://travis-ci.org/jab/bidict |
+------------+--------------------------------------------------------------------------+---------------------------------------------------------------+

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='bidict',
version='0.3.1-dev',
version='0.3.1',
author='Joshua Bronson',
author_email='jab@math.brown.edu',
description="2-way dict with convenient slice syntax: d[65] = 'A' -> d[:'A'] == 65",