Skip to content

Commit

Permalink
Bump version: 0.2.2 → 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lmmentel committed Nov 10, 2016
1 parent c6ca545 commit 7045ed6
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.2
current_version = 0.3.0
commit = True
tag = True

Expand All @@ -24,3 +24,4 @@ tag = True
[bumpversion:file:batchcalc/utils.py]

[bumpversion:file:doc/source/conf.py]

2 changes: 1 addition & 1 deletion batchcalc/__init__.py
@@ -1,5 +1,5 @@

__version__ = "0.2.2"
__version__ = "0.3.0"

import controller
import dialogs
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/calculator.py
Expand Up @@ -37,7 +37,7 @@
from batchcalc import controller as ctrl
from batchcalc.model import Chemical, Component, Batch

__version__ = "0.2.2"
__version__ = "0.3.0"


_MINWIDTH = 15
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/controller.py
Expand Up @@ -47,7 +47,7 @@
from batchcalc.utils import get_columns


__version__ = "0.2.2"
__version__ = "0.3.0"


#['batches', 'components', 'categories', 'chemicals', 'electrolytes', 'kinds',
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/dialogs.py
Expand Up @@ -37,7 +37,7 @@
import wx.lib.agw.genericmessagedialog as GMD


__version__ = "0.2.2"
__version__ = "0.3.0"


def which(prog):
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/model.py
Expand Up @@ -36,7 +36,7 @@
from sqlalchemy.ext.associationproxy import association_proxy
from sqlalchemy.ext.hybrid import hybrid_property

__version__ = "0.2.2"
__version__ = "0.3.0"

Base = declarative_base()

Expand Down
2 changes: 1 addition & 1 deletion batchcalc/pdf_writer.py
Expand Up @@ -39,7 +39,7 @@
from batchcalc import controller as ctrl


__version__ = "0.2.2"
__version__ = "0.3.0"

styles = getSampleStyleSheet()
styles.add(ParagraphStyle(name='Justify', alignment=TA_JUSTIFY))
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/tex_writer.py
Expand Up @@ -33,7 +33,7 @@
import datetime
from jinja2 import Environment, FileSystemLoader

__version__ = "0.2.2"
__version__ = "0.3.0"


def get_temppath():
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/utils.py
Expand Up @@ -32,7 +32,7 @@
from collections import OrderedDict
from ObjectListView import ColumnDefn

__version__ = "0.2.2"
__version__ = "0.3.0"


def format_float(item):
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/zbc.py
Expand Up @@ -52,7 +52,7 @@

from batchcalc.utils import get_columns

__version__ = "0.2.2"
__version__ = "0.3.0"


def clean_tex(fname):
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Expand Up @@ -62,9 +62,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.2.2'
version = u'0.3.0'
# The full version, including alpha/beta/rc tags.
release = u'0.2.2'
release = u'0.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -9,7 +9,7 @@
LICENSE = open('LICENSE.txt').read()
NAME = "batchcalc"
URL = "https://bitbucket.org/lukaszmentel/batchcalc"
VERSION = "0.2.2"
VERSION = "0.3.0"
YEAR = "2014"


Expand Down

0 comments on commit 7045ed6

Please sign in to comment.