Skip to content

Commit

Permalink
Merge pull request #342 from BigBrotherBot/simple-version
Browse files Browse the repository at this point in the history
Simple version
  • Loading branch information
thomasleveil committed Jun 23, 2015
2 parents 3040409 + fccf8b6 commit d55dc3f
Show file tree
Hide file tree
Showing 12 changed files with 55 additions and 444 deletions.
9 changes: 9 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[bumpversion]
current_version = 1.10.0

[bumpversion:file:b3/__init__.py]

[bumpversion:file:b3/PKG-INFO]

[bumpversion:file:setup.py]

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ desktop.ini
*.orig
*.patch
*.lnk
b3.egg-info
build
dist
releases/*
Expand Down
11 changes: 11 additions & 0 deletions PACKAGING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ B3 is distributed as different packages:
- linux zip package
- apple OS X .dmg disk image

# Bumping the version number

You need the bumpversion tool for that task. See https://pypi.python.org/pypi/bumpversion/

Usage:

bumpversion patch # will change "1.10.0" to "1.10.1"
bumpversion minor # will change "1.10.0" to "1.11.0"
bumpversion major # will change "1.10.0" to "2.0.0"


# Packaging B3

To be able to build B3 distribution packages you need to have installed Python 2.7 32bit on your system.
Expand Down
20 changes: 0 additions & 20 deletions b3.egg-info/PKG-INFO

This file was deleted.

322 changes: 0 additions & 322 deletions b3.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion b3.egg-info/dependency_links.txt

This file was deleted.

3 changes: 0 additions & 3 deletions b3.egg-info/entry_points.txt

This file was deleted.

2 changes: 0 additions & 2 deletions b3.egg-info/top_level.txt

This file was deleted.

2 changes: 1 addition & 1 deletion b3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
from ConfigParser import NoSectionError

__author__ = 'ThorN'
__version__ = pkg_handler.version(__name__)
__version__ = '1.10.0'

modulePath = pkg_handler.resource_directory(__name__)

Expand Down
Loading

0 comments on commit d55dc3f

Please sign in to comment.