Skip to content

Commit

Permalink
Update version to 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandoislas committed Apr 10, 2017
1 parent 3751b5c commit c21f527
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drc-sim-backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def main():
ConfigServer.load()
ConfigServer.save()
init_loggers()
Logger.info("Initializing drc-sim-backend")
Logger.info("Initializing drc-sim-backend version %s", constants.VERSION)
Logger.info("Using \"%s\" as home folder.", constants.PATH_ROOT)
log_level()
OsUtil.log_info(Logger)
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@

from setuptools import find_packages

from src.server.data import constants

setup(name='drcsim',
version='1.3',
version=constants.VERSION,
description='Wii U gamepad simulator.',
install_requires=['construct<2.8', 'Pillow==3.4.2', 'cffi==1.9.1', 'netifaces==0.10.5', 'pexpect==4.2.1'],
packages=find_packages(),
Expand Down
3 changes: 3 additions & 0 deletions src/server/data/constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import os

# Info
VERSION = "1.4"

# Port
PORT_WII_MSG = 50010
PORT_WII_VID = 50020
Expand Down

0 comments on commit c21f527

Please sign in to comment.