Skip to content

Commit 1358fa7

Browse files
committed
Bump version: 0.0.1 → 0.1.0
1 parent 08b437d commit 1358fa7

4 files changed

Lines changed: 20 additions & 17 deletions

File tree

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# |version| and |release|, also used in various other places throughout the
5757
# built documents.
5858
#
59-
version = '0.0.1'
59+
version = '0.1.0'
6060
release = version
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
@@ -139,7 +139,7 @@
139139
# The name for this set of Sphinx documents.
140140
# "<project> v<release> documentation" by default.
141141
#
142-
# html_title = u'django-environ-stores v0.0.1'
142+
# html_title = u'django-environ-stores v0.1.0'
143143

144144
# A shorter title for the navigation bar. Default is the same as html_title.
145145
#

setup.cfg

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,37 @@
1+
[bumpversion]
2+
current_version = 0.1.0
3+
commit = true
4+
tag = true
5+
tag_name = {new_version}
6+
17
[tool:pytest]
28
minversion = 3.0
39
strict = true
410
testpaths = tests
511

612
[wheel]
7-
universal=1
13+
universal = 1
814

915
[flake8]
1016
max-line-length = 99
1117

12-
[bumpversion]
13-
current_version = 0.0.1
14-
commit = true
15-
tag = true
16-
tag_name = {new_version}
17-
1818
[bumpversion:file:setup.py]
19+
1920
[bumpversion:file:docs/conf.py]
21+
2022
[bumpversion:file:src/param_store/__init__.py]
2123

2224
[coverage:run]
2325
branch = True
24-
source =
25-
param_store
26+
source =
27+
param_store
2628

2729
[coverage:paths]
28-
source =
29-
src/param_store
30-
.tox/*/lib/python*/site-packages/param_store
31-
.tox/pypy*/site-packages/param_store
30+
source =
31+
src/param_store
32+
.tox/*/lib/python*/site-packages/param_store
33+
.tox/pypy*/site-packages/param_store
3234

3335
[coverage:report]
3436
show_missing = True
37+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
setup(
3333
name='param-store',
34-
version='0.0.1',
34+
version='0.1.0',
3535
description="Parameter store for secrets",
3636
long_description=long_description,
3737
url='https://github.com/labd/python-param-store',

src/param_store/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__all__ = ['Env', 'EC2ParameterStore']
55

6-
__version__ = '0.0.1'
6+
__version__ = '0.1.0'

0 commit comments

Comments
 (0)