Skip to content

Commit 3c13f05

Browse files
committed
Bump version v0.3.0 -> v0.3.1
1 parent 1d992f4 commit 3c13f05

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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.3.0
2+
current_version = 0.3.1
33
commit = True
44
tag = True
55

README.rst

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

109-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/astatine/v0.3.0
109+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/astatine/v0.3.1
110110
:target: https://github.com/domdfcoding/astatine/pulse
111111
:alt: GitHub commits since tagged version
112112

__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.3.0"
29+
__version__ = "0.3.1"
3030
repo_root = pathlib.Path(__file__).parent
3131
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3232
extras_require = {}

astatine/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
__author__: str = "Dominic Davis-Foster"
6363
__copyright__: str = "2021 Dominic Davis-Foster"
6464
__license__: str = "MIT License"
65-
__version__: str = "0.3.0"
65+
__version__: str = "0.3.1"
6666
__email__: str = "dominic@davis-foster.co.uk"
6767

6868
__all__ = [
@@ -179,7 +179,7 @@ def kwargs_from_node(
179179
"""
180180
Returns a mapping of argument names to the AST nodes representing their values, for the given function call.
181181
182-
.. versionadded:: 0.3.0
182+
.. versionadded:: 0.3.1
183183
184184
:param node:
185185
:param posarg_names: Either a list of positional argument names for the function, or the function object.
@@ -201,7 +201,7 @@ def get_attribute_name(node: ast.AST) -> Iterable[str]:
201201
"""
202202
Returns the elements of the dotted attribute name for the given AST node.
203203
204-
.. versionadded:: 0.3.0
204+
.. versionadded:: 0.3.1
205205
206206
:param node:
207207
@@ -224,7 +224,7 @@ def get_contextmanagers(with_node: ast.With) -> Dict[Tuple[str, ...], ast.withit
224224
"""
225225
For the given ``with`` block, returns a mapping of the contextmanager names to the individual nodes.
226226
227-
.. versionadded:: 0.3.0
227+
.. versionadded:: 0.3.1
228228
229229
:param with_node:
230230
"""
@@ -245,7 +245,7 @@ def get_constants(module: ast.Module) -> Dict[str, Any]:
245245
"""
246246
Returns a ``name: value`` mapping of constants in the given module.
247247
248-
.. versionadded:: 0.3.0
248+
.. versionadded:: 0.3.1
249249
250250
:param module:
251251
"""

doc-source/index.rst

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

111111
.. |commits-since| github-shield::
112-
:commits-since: v0.3.0
112+
:commits-since: v0.3.1
113113
:alt: GitHub commits since tagged version
114114

115115
.. |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 = "setuptools.build_meta"
44

55
[project]
66
name = "astatine"
7-
version = "0.3.0"
7+
version = "0.3.1"
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.3.0'
8+
version: '0.3.1'
99
license: 'MIT'
1010
short_desc: "Some handy helper functions for Python's AST module."
1111

0 commit comments

Comments
 (0)