Release 0.5.0

- Python 3 compatibility thanks to @didrocks.
- Allow unicode keys to Key().
- Add @threadlocal scope.
- Add @with_injector method decorator for helping with test boilerplate.
This commit is contained in:
Alec Thomas 2012-11-16 09:48:02 -05:00
commit c70ed6be7d
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import threading
__author__ = 'Alec Thomas <alec@swapoff.org>'
__version__ = '0.4.3'
__version__ = '0.5.0'
__version_tag__ = ''

View File

@ -17,7 +17,7 @@ class PyTest(Command):
version = injector.__version__
version_tag = injector.__version_tag__
long_description = open('README.rst').read()
long_description = open('README.md').read()
description = long_description.splitlines()[0].strip()