Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lmmentel committed Jan 21, 2018
1 parent 77df8a7 commit d41758b
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 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.3.0
current_version = 0.3.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,5 +1,5 @@

__version__ = "0.3.0"
__version__ = "0.3.1"

from . import controller
from . import dialogs
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from batchcalc import controller as ctrl
from batchcalc.model import Chemical, Component, Batch

__version__ = "0.3.0"
__version__ = "0.3.1"


_MINWIDTH = 15
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
from batchcalc.utils import get_columns, get_resource_path


__version__ = "0.3.0"
__version__ = "0.3.1"


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


__version__ = "0.3.0"
__version__ = "0.3.1"


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

__version__ = "0.3.0"
__version__ = "0.3.1"

Base = declarative_base()

Expand Down
2 changes: 1 addition & 1 deletion batchcalc/pdf_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from batchcalc import controller as ctrl


__version__ = "0.3.0"
__version__ = "0.3.1"

styles = getSampleStyleSheet()
styles.add(ParagraphStyle(name='Justify', alignment=TA_JUSTIFY))
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/tex_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

from batchcalc.utils import get_resource_path

__version__ = "0.3.0"
__version__ = "0.3.1"


def get_report_as_string(flags, model):
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
from ObjectListView import ColumnDefn


__version__ = "0.3.0"
__version__ = "0.3.1"


def get_resource_path(*args):
Expand Down
2 changes: 1 addition & 1 deletion batchcalc/zbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

from batchcalc.utils import get_columns

__version__ = "0.3.0"
__version__ = "0.3.1"


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

# 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
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.3.0"
VERSION = "0.3.1"
YEAR = "2014"


Expand Down

0 comments on commit d41758b

Please sign in to comment.