diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 02ecca7c6..6f54b6ef8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.10.4 +current_version = 1.10.5 [bumpversion:file:b3/__init__.py] diff --git a/b3/PKG-INFO b/b3/PKG-INFO index ca120f617..8257574e8 100644 --- a/b3/PKG-INFO +++ b/b3/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: b3 -Version: 1.10.4 +Version: 1.10.5 Summary: BigBrotherBot (B3) is a cross-platform, cross-game game administration bot. Features in-game administration of game servers, multiple user access levels, and database storage. Currently include parsers for Call of Duty 1 to 8, Urban Terror (ioUrT 4.1 and 4.2), BF3, Arma II, CS:GO, Red Orchestra 2, BFBC2, MOH 2010, World of Padman, ETpro, Smokin' Guns, HomeFront, Open Arena, Altitude. Home-page: http://www.bigbrotherbot.net Author: Michael Thornton (ThorN), Tim ter Laak (ttlogic), Mark Weirath (xlr8or), Thomas Leveil (Courgette) diff --git a/b3/__init__.py b/b3/__init__.py index 7d426c339..aae159255 100644 --- a/b3/__init__.py +++ b/b3/__init__.py @@ -60,7 +60,7 @@ from ConfigParser import NoSectionError __author__ = 'ThorN' -__version__ = '1.10.4' +__version__ = '1.10.5' modulePath = pkg_handler.resource_directory(__name__) @@ -115,7 +115,7 @@ def getHomePath(): """ path = os.path.normpath(os.path.expanduser('~/.b3')).decode(sys.getfilesystemencoding()) - ## RENAME v1.10.1 -> v1.10.4 + ## RENAME v1.10.1 -> v1.10.5 path_1 = os.path.normpath(os.path.expanduser('~/BigBrotherBot')).decode(sys.getfilesystemencoding()) if os.path.isdir(path_1): shutil.move(path_1, path) diff --git a/setup.py b/setup.py index 2f89d60e3..d87cac3d7 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ from setuptools.command.egg_info import egg_info as orig_egg_info from time import strftime -b3_version = '1.10.4' +b3_version = '1.10.5' b3_version_info = b3.getB3versionInfo() PROJECT_DIR = os.path.abspath(os.path.dirname(__file__)) # directory where this file is in