Skip to content

Commit

Permalink
Bump version: 0.2.0 → 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lmmentel committed Mar 9, 2015
1 parent e8ce107 commit 7773d9b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 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 = 0.2.0
current_version = 0.2.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion batchcalc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion batchcalc/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "0.2.0"
__version__ = "0.2.1"

import operator
import os
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "0.2.0"
__version__ = "0.2.1"

import wx

Expand Down
2 changes: 1 addition & 1 deletion batchcalc/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "0.2.0"
__version__ = "0.2.1"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/pdf_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "0.2.0"
__version__ = "0.2.1"

import datetime
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/tex_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "0.2.0"
__version__ = "0.2.1"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/zbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "0.2.0"
__version__ = "0.2.1"

import copy
import os
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
LICENSE = open('LICENSE.txt').read()
NAME = "batchcalc"
URL = "https://bitbucket.org/lukaszmentel/batchcalc"
VERSION = "0.2.0"
VERSION = "0.2.1"
YEAR = "2014"

def readme():
Expand Down

0 comments on commit 7773d9b

Please sign in to comment.