Skip to content

Commit c76884d

Browse files
committed
Bump version: 0.1.0 → 0.1.1
1 parent 086297c commit c76884d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.0
2+
current_version = 0.1.1
33
commit = True
44
tag = True
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
year = '2016'
2626
author = u'Andy Craze'
2727
copyright = '{0}, {1}'.format(year, author)
28-
version = release = u'0.1.0'
28+
version = release = u'0.1.1'
2929

3030
pygments_style = 'trac'
3131
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(*names, **kwargs):
2424

2525
setup(
2626
name='ia-markov',
27-
version='0.1.0',
27+
version='0.1.1',
2828
license='BSD',
2929
description='A Markov model trained on Internet Archive text files.',
3030
long_description='%s\n%s' % (

src/ia_markov/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .markov import MarkovModel # noqa
22
from .markov import POSMarkov # noqa
33

4-
__version__ = "0.1.0"
4+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)