Skip to content

Commit

Permalink
version bump with release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
teepark committed Dec 30, 2014
1 parent d7aebc8 commit e7e4d42
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,7 @@

2.1.13 (11/19/2014)
- updated the zmq patching code to match changes in pyzmq

2.2.0 (12/30/2014)
- fixed ssl emulation with httplib for python 2.7.3 (I believe this fixes
it up through 2.7.8, but 2.7.9 is still very broken)
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = '2.1'
version = '2.2'
# The full version, including alpha/beta/rc tags.
release = '2.1.13'
release = '2.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion greenhouse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from greenhouse.emulation import *


VERSION = (2, 1, 13, '')
VERSION = (2, 2, 0, '')

__version__ = ".".join(filter(None, (str(x) for x in VERSION)))

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
#!/usr/bin/env python
# vim: fileencoding=utf8:et:sw=4:ts=8:sts=4

import os
from setuptools import setup


VERSION = (2, 1, 13, "")
VERSION = (2, 2, 0, "")

setup(
name="greenhouse",
Expand Down

0 comments on commit e7e4d42

Please sign in to comment.