Skip to content

Commit

Permalink
Update changelog and bump version to 0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jstasiak committed Aug 19, 2013
1 parent 6cfa0ab commit 3f27270
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# ChangeLog for Injector

## 0.7.5
## 0.7.7

- Made AssistedBuilder behave more explicitly: it can build either innstance of a concrete class (``AssistedBuilder(cls=Class)``) or it will follow Injector bindings (if exist) and construct instance of a class pointed by an interface (``AssistedBuilder(interface=Interface)``). ``AssistedBuilder(X)`` behaviour remains the same, it's equivalent to ``AssistedBuilder(interface=X)``

## 0.7.6

- Auto-convert README.md to RST for PyPi.

## 0.7.4
## 0.7.5

- Added a ChangeLog!
- Added support for using Python3 annotations as binding types.
3 changes: 1 addition & 2 deletions injector.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
:license: BSD
"""

import collections
import itertools
import functools
import inspect
Expand All @@ -35,7 +34,7 @@ def emit(self, record):
pass

__author__ = 'Alec Thomas <alec@swapoff.org>'
__version__ = '0.7.6'
__version__ = '0.7.7'
__version_tag__ = ''

log = logging.getLogger('injector')
Expand Down

0 comments on commit 3f27270

Please sign in to comment.