Skip to content
This repository was archived by the owner on Feb 24, 2021. It is now read-only.

Commit 83d2093

Browse files
committed
Bump version: 0.1.0 → 0.2.0
1 parent d3e0041 commit 83d2093

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 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.2.0
33
commit = True
44
tag = True
55

@@ -18,3 +18,4 @@ replace = version = release = '{new_version}'
1818
[bumpversion:file:src/structured_data/__init__.py]
1919
search = __version__ = '{current_version}'
2020
replace = __version__ = '{new_version}'
21+

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ Overview
4040
:alt: PyPI Package latest release
4141
:target: https://pypi.python.org/pypi/structured-data
4242

43-
.. |commits-since| image:: https://img.shields.io/github/commits-since/mwchase/python-structured-data/v0.1.0.svg
43+
.. |commits-since| image:: https://img.shields.io/github/commits-since/mwchase/python-structured-data/v0.2.0.svg
4444
:alt: Commits since latest release
45-
:target: https://github.com/mwchase/python-structured-data/compare/v0.1.0...master
45+
:target: https://github.com/mwchase/python-structured-data/compare/v0.2.0...master
4646

4747
.. |wheel| image:: https://img.shields.io/pypi/wheel/structured-data.svg
4848
:alt: PyPI Wheel

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
year = '2018'
2727
author = 'Max Woerner Chase'
2828
copyright = '{0}, {1}'.format(year, author)
29-
version = release = '0.1.0'
29+
version = release = '0.2.0'
3030

3131
pygments_style = 'trac'
3232
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='structured-data',
27-
version='0.1.0',
27+
version='0.2.0',
2828
license='MIT license',
2929
description='Code generators for immutable structured data, including algebraic data types, and functions to destructure them.',
3030
long_description='%s\n%s' % (

src/structured_data/__init__.py

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

1414
_CTOR_CACHE = {}
1515

16-
__version__ = '0.1.0'
16+
__version__ = '0.2.0'
1717

1818

1919
class _CtorMeta(type):

0 commit comments

Comments
 (0)