Skip to content

Commit ef4f774

Browse files
committed
Bump version v0.0.0 -> v0.1.0
1 parent b9beb04 commit ef4f774

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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.0.0
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It's a fitting name for Python's ``ast`` module, which has been unstable between
9696
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/astatine
9797
:alt: GitHub top language
9898

99-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/astatine/v0.0.0
99+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/astatine/v0.1.0
100100
:target: https://github.com/domdfcoding/astatine/pulse
101101
:alt: GitHub commits since tagged version
102102

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
2727
"""
2828

29-
__version__ = "0.0.0"
29+
__version__ = "0.1.0"
3030
repo_root = pathlib.Path(__file__).parent
3131
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3232
extras_require = {"all": []}

astatine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
__author__: str = "Dominic Davis-Foster"
6262
__copyright__: str = "2021 Dominic Davis-Foster"
6363
__license__: str = "MIT License"
64-
__version__: str = "0.0.0"
64+
__version__: str = "0.1.0"
6565
__email__: str = "dominic@davis-foster.co.uk"
6666

6767
__all__ = ["get_docstring_lineno", "get_toplevel_comments", "is_type_checking", "mark_text_ranges"]

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ It's a fitting name for Python's :mod:`ast` module, which has been unstable betw
9797
:alt: GitHub top language
9898

9999
.. |commits-since| github-shield::
100-
:commits-since: v0.0.0
100+
:commits-since: v0.1.0
101101
:alt: GitHub commits since tagged version
102102

103103
.. |commits-latest| github-shield::

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "whey"
44

55
[project]
66
name = "astatine"
7-
version = "0.0.0"
7+
version = "0.1.0"
88
description = "Some handy helper functions for Python's AST module."
99
readme = "README.rst"
1010
keywords = [ "ast",]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ copyright_years: '2021'
55
author: 'Dominic Davis-Foster'
66
email: 'dominic@davis-foster.co.uk'
77
username: 'domdfcoding'
8-
version: '0.0.0'
8+
version: '0.1.0'
99
license: 'MIT'
1010
short_desc: "Some handy helper functions for Python's AST module."
1111

0 commit comments

Comments
 (0)