diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-02-24 00:18:53 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-02-24 00:18:53 +0100 |
commit | b297d69b2d7027793994d14381bdb8457b8bd8cb (patch) | |
tree | 2a9aa28fe86521a9aa32c50fd0af271605dc881f | |
parent | 826312ad0629ab49cab436d7cb1d27a898e7d864 (diff) | |
download | factory-boy-b297d69b2d7027793994d14381bdb8457b8bd8cb.tar factory-boy-b297d69b2d7027793994d14381bdb8457b8bd8cb.tar.gz |
Upgrade version.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r-- | factory/__init__.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/factory/__init__.py b/factory/__init__.py index cc5b788..e58dc51 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.0.4' # Remember to change in setup.py as well! +__version__ = '1.1.0' # Remember to change in setup.py as well! __author__ = 'Raphaël Barrois <raphael.barrois@polytechnique.org>' from base import ( @@ -5,7 +5,7 @@ from distutils.core import setup from distutils import cmd # Remember to change in factory/__init__.py as well! -VERSION = '1.0.4' +VERSION = '1.1.0' class test(cmd.Command): |