Skip to content

Commit 366e154

Browse files
committed
'Bump version: 0.0.19 → 0.1.0'
1 parent c9030c2 commit 366e154

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

.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.0.19
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55
message = 'Bump version: {current_version} → {new_version}'

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Tolkein
3737
:alt: Conda platforms
3838
:target: https://anaconda.org/tolkit/tolkein
3939

40-
.. |commits-since| image:: https://img.shields.io/github/commits-since/tolkit/tolkein/v0.0.19.svg
40+
.. |commits-since| image:: https://img.shields.io/github/commits-since/tolkit/tolkein/v0.1.0.svg
4141
:alt: Commits since latest release
42-
:target: https://github.com/tolkit/tolkein/compare/v0.0.19...master
42+
:target: https://github.com/tolkit/tolkein/compare/v0.1.0...master
4343

4444
.. |license| image:: https://anaconda.org/tolkit/tolkein/badges/license.svg
4545
:alt: MIT License

conda-recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = 'tolkein' %}
2-
{% set version = '0.0.19' %}
2+
{% set version = '0.1.0' %}
33

44
package:
55
name: {{ name }}

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
version = release = get_distribution('tolkein').version
2929
except Exception:
3030
traceback.print_exc()
31-
version = release = '0.0.19'
31+
version = release = '0.1.0'
3232

3333
pygments_style = 'trac'
3434
templates_path = ['.']

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ requires = [
66
]
77

88
[tool.setuptools_scm]
9-
fallback_version = '0.0.19'
9+
fallback_version = '0.1.0'
1010
local_scheme = 'dirty-tag'
1111
write_to = '_version.py'

scripts/conda_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
VERSION=0.0.19
3+
VERSION=0.1.0
44

55
case $(uname | tr '[:upper:]' '[:lower:]') in
66
linux*)

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='tolkein', # Required
27-
version='0.0.19',
27+
version='0.1.0',
2828
description='Tree of Life Kit of Evolutionary Informatics Novelties', # Optional
2929
long_description='%s\n%s' % (
3030
re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', read('README.rst')),

src/tolkein/lib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env python3
22
"""Tolkein version."""
33

4-
__version__ = '0.0.19'
4+
__version__ = '0.1.0'

0 commit comments

Comments
 (0)