Skip to content

Commit

Permalink
bumpversion: 1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danielepantaleone committed Jul 22, 2015
1 parent f93c4ae commit 84af23a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.10.4
current_version = 1.10.5

[bumpversion:file:b3/__init__.py]

Expand Down
2 changes: 1 addition & 1 deletion b3/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions b3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
from ConfigParser import NoSectionError

__author__ = 'ThorN'
__version__ = '1.10.4'
__version__ = '1.10.5'

modulePath = pkg_handler.resource_directory(__name__)

Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 84af23a

Please sign in to comment.