diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-07-09 20:28:24 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-07-09 20:28:24 +0200 |
commit | 163efcdb67c3328e739564c53e47b74ff421999f (patch) | |
tree | 57427e6867da3ba0c22b8f06b37107ff8d8d4200 | |
parent | cc1f59b3fe772c0e4b18f620192233d56e94a4e4 (diff) | |
download | factory-boy-163efcdb67c3328e739564c53e47b74ff421999f.tar factory-boy-163efcdb67c3328e739564c53e47b74ff421999f.tar.gz |
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r-- | factory/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/factory/__init__.py b/factory/__init__.py index f806e6f..3753461 100644 --- a/factory/__init__.py +++ b/factory/__init__.py @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -__version__ = '1.1.4' # Remember to change in setup.py as well! +__version__ = '1.1.5' # Remember to change in setup.py as well! __author__ = 'Raphaël Barrois <raphael.barrois@polytechnique.org>' from base import ( @@ -6,7 +6,7 @@ from distutils.core import setup from distutils import cmd # Remember to change in factory/__init__.py as well! -VERSION = '1.1.4' +VERSION = '1.1.5' class test(cmd.Command): |