mirror of
https://github.com/status-im/cabot.git
synced 2025-02-24 02:18:08 +00:00
Merge pull request #481 from arachnys/hipchat-v2
Update cabot-alert-hipchat to 2.0.0 (hipchat api v2)
This commit is contained in:
commit
c453b27920
4
CHANGES
4
CHANGES
@ -1,6 +1,10 @@
|
|||||||
master
|
master
|
||||||
------
|
------
|
||||||
|
|
||||||
|
* Update cabot-alert-hipchat plugin to 2.0.1
|
||||||
|
- Supports Hipchat API v2
|
||||||
|
- If HIPCHAT_URL is set, it will use the old v1 api
|
||||||
|
- Use HIPCHAT_DOMAIN for custom hipchat v2 deployments
|
||||||
* Add interactive api docs (using djangorestframework 3.6) at /docs
|
* Add interactive api docs (using djangorestframework 3.6) at /docs
|
||||||
|
|
||||||
Version 0.10.1
|
Version 0.10.1
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
cabot_alert_email==1.4.3
|
cabot_alert_email==1.4.3
|
||||||
cabot_alert_hipchat==1.8.3
|
cabot_alert_hipchat==2.0.1
|
||||||
cabot_alert_twilio==1.3.1
|
cabot_alert_twilio==1.3.1
|
||||||
cabot_alert_slack==0.7.0
|
cabot_alert_slack==0.7.0
|
||||||
|
5
setup.py
5
setup.py
@ -9,7 +9,10 @@ from pip.req import parse_requirements
|
|||||||
requirements = [str(req.req) for req in parse_requirements('requirements.txt', session=False)]
|
requirements = [str(req.req) for req in parse_requirements('requirements.txt', session=False)]
|
||||||
requirements_plugins = [str(req.req) for req in parse_requirements('requirements-plugins.txt', session=False)]
|
requirements_plugins = [str(req.req) for req in parse_requirements('requirements-plugins.txt', session=False)]
|
||||||
|
|
||||||
VERSION = subprocess.check_output(['git', 'describe', '--tags']).strip()
|
try:
|
||||||
|
VERSION = subprocess.check_output(['git', 'describe', '--tags']).strip()
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
VERSION = '0.dev'
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='cabot',
|
name='cabot',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user