0.8.0 release.

This commit is contained in:
Alec Thomas 2014-01-24 01:34:09 -05:00
parent e41ecc27af
commit b7a6cabce0
1 changed files with 6 additions and 5 deletions

View File

@ -14,17 +14,18 @@
:license: BSD :license: BSD
""" """
import itertools
import functools import functools
import inspect import inspect
import itertools
import logging import logging
import sys import sys
import types
import threading import threading
import types
import warnings import warnings
from abc import ABCMeta, abstractmethod from abc import ABCMeta, abstractmethod
from collections import namedtuple from collections import namedtuple
try: try:
NullHandler = logging.NullHandler NullHandler = logging.NullHandler
except AttributeError: except AttributeError:
@ -33,7 +34,7 @@ except AttributeError:
pass pass
__author__ = 'Alec Thomas <alec@swapoff.org>' __author__ = 'Alec Thomas <alec@swapoff.org>'
__version__ = '0.8.0c1' __version__ = '0.8.0'
__version_tag__ = '' __version_tag__ = ''
log = logging.getLogger('injector') log = logging.getLogger('injector')