summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2012-02-24 09:50:24 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2012-02-24 09:50:24 +0100
commit86cd8c2472dff6fe62e3c1f83bd9a1a3523ce08e (patch)
treeb79374cccb16b3a2b363da93b37a67d3bd4a0e1d
parent1643e56a6e4ca0e90621b9c39928b2c6bfb63063 (diff)
downloadfactory-boy-86cd8c2472dff6fe62e3c1f83bd9a1a3523ce08e.tar
factory-boy-86cd8c2472dff6fe62e3c1f83bd9a1a3523ce08e.tar.gz
Version bumpv1.1.1
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
-rw-r--r--docs/conf.py2
-rw-r--r--factory/__init__.py2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 7a67dfd..2326d73 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -51,7 +51,7 @@ copyright = u'2011, Raphaël Barrois, Mark Sandstrom'
# The short X.Y version.
version = '1.1'
# The full version, including alpha/beta/rc tags.
-release = '1.1.0'
+release = '1.1.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/factory/__init__.py b/factory/__init__.py
index 4acd380..990f39f 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.0' # Remember to change in setup.py as well!
+__version__ = '1.1.1' # Remember to change in setup.py as well!
__author__ = 'Raphaël Barrois <raphael.barrois@polytechnique.org>'
from base import (
diff --git a/setup.py b/setup.py
index 99aa123..2b1d54b 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from distutils.core import setup
from distutils import cmd
# Remember to change in factory/__init__.py as well!
-VERSION = '1.1.0'
+VERSION = '1.1.1'
class test(cmd.Command):