Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple version #342

Merged
merged 2 commits into from
Jun 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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