Skip to content

Commit

Permalink
Merge pull request #52 from totem/develop
Browse files Browse the repository at this point in the history
0.4.7 Release
  • Loading branch information
sukrit007 committed Mar 22, 2016
2 parents 878c279 + 61b0dc6 commit 63a1b6f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deployer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from celery.signals import setup_logging


__version__ = '0.4.6'
__version__ = '0.4.7'
__author__ = 'sukrit'

deployer.logger.init_logging()
Expand Down
3 changes: 2 additions & 1 deletion deployer/views/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from hyperschema.hypermedia import HyperMedia
import deployer
from conf.appconfig import API_PORT
from deployer.services.task_client import TaskClient

__author__ = 'sukrit'

hypermedia = HyperMedia()
hypermedia = HyperMedia(base_url='http://localhost:{}'.format(API_PORT))
task_client = TaskClient(deployer.celery.app)
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ celery[mongodb]==3.1.20

https://github.com/totem/fleet-py/archive/0.1.6.tar.gz
https://github.com/totem/yoda-py/archive/v0.1.8b2.tar.gz
https://github.com/totem/flask-hyperschema/archive/v0.1.1.tar.gz
https://github.com/totem/flask-hyperschema/archive/0.2.0.tar.gz
https://github.com/totem/totem-encrypt/archive/master.tar.gz
https://github.com/dlitz/pycrypto/archive/v2.7a1.tar.gz
3 changes: 3 additions & 0 deletions schemas/app-version-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@
"stop": {
"type": "object",
"$ref": "#/definitions/deployment-stop"
},
"mode": {
"enum": ["blue-green", "red-green", "a/b", "custom"]
}
},
"additionalProperties": false
Expand Down

0 comments on commit 63a1b6f

Please sign in to comment.