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