Skip to content

Commit

Permalink
[RELEASE] version: 0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Sep 23, 2018
1 parent 08a341e commit 08000a9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
11 changes: 6 additions & 5 deletions bin/botbond
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ __license__ = """
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
__version__ = '0.13'
__version__ = '0.14'

# TODO: load Python logging configuration (using standard logging.config)

Expand All @@ -34,8 +34,9 @@ from botbond.modules import * # XXX
from botbond.plugins import * # XXX
from dwho.modules import * # XXX
from dwho import config
from httpdis import httpdis
from sonicprobe import helpers
from sonicprobe.libs import daemonize, http_json_server
from sonicprobe.libs import daemonize


SYSLOG_NAME = "botbond"
Expand Down Expand Up @@ -118,8 +119,8 @@ def main(options):
setattr(options, 'server_version', "%s/%s" % (SYSLOG_NAME, __version__))
setattr(options, 'sys_version', '')

http_json_server.init(options, False)
config.DWHO_THREADS.append(http_json_server.stop)
httpdis.init(options, False)
config.DWHO_THREADS.append(httpdis.stop)

if not options.foreground:
LOG.info("Transforming into a daemon from hell")
Expand All @@ -143,7 +144,7 @@ def main(options):

config.start_plugins()
config.start_inotify()
http_json_server.run(options)
httpdis.run(options)
except (KeyboardInterrupt, SystemExit):
raise
except Exception:
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
dwho>=0.2.27
dwho>=0.2.60
emoji
httpdis>=0.5.3
hypchat
pyyaml>=3.10
redis>=2.4.0
requests
slackclient
sonicprobe>=0.2.40
sonicprobe>=0.2.52
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup

requirements = [line.strip() for line in open('requirements.txt', 'r').readlines()]
version = '0.13'
version = '0.14'

if os.path.isfile('VERSION'):
version = open('VERSION', 'r').readline().strip() or version
Expand Down

0 comments on commit 08000a9

Please sign in to comment.