Skip to content

Commit

Permalink
Bump version v0.3.0 -> v0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 23, 2021
1 parent 1d992f4 commit 3c13f05
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.3.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ It's a fitting name for Python's ``ast`` module, which has been unstable between
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/astatine
:alt: GitHub top language

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

Expand Down
2 changes: 1 addition & 1 deletion __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
"""

__version__ = "0.3.0"
__version__ = "0.3.1"
repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
extras_require = {}
10 changes: 5 additions & 5 deletions astatine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
__author__: str = "Dominic Davis-Foster"
__copyright__: str = "2021 Dominic Davis-Foster"
__license__: str = "MIT License"
__version__: str = "0.3.0"
__version__: str = "0.3.1"
__email__: str = "dominic@davis-foster.co.uk"

__all__ = [
Expand Down Expand Up @@ -179,7 +179,7 @@ def kwargs_from_node(
"""
Returns a mapping of argument names to the AST nodes representing their values, for the given function call.
.. versionadded:: 0.3.0
.. versionadded:: 0.3.1
:param node:
:param posarg_names: Either a list of positional argument names for the function, or the function object.
Expand All @@ -201,7 +201,7 @@ def get_attribute_name(node: ast.AST) -> Iterable[str]:
"""
Returns the elements of the dotted attribute name for the given AST node.
.. versionadded:: 0.3.0
.. versionadded:: 0.3.1
:param node:
Expand All @@ -224,7 +224,7 @@ def get_contextmanagers(with_node: ast.With) -> Dict[Tuple[str, ...], ast.withit
"""
For the given ``with`` block, returns a mapping of the contextmanager names to the individual nodes.
.. versionadded:: 0.3.0
.. versionadded:: 0.3.1
:param with_node:
"""
Expand All @@ -245,7 +245,7 @@ def get_constants(module: ast.Module) -> Dict[str, Any]:
"""
Returns a ``name: value`` mapping of constants in the given module.
.. versionadded:: 0.3.0
.. versionadded:: 0.3.1
:param module:
"""
Expand Down
2 changes: 1 addition & 1 deletion doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ It's a fitting name for Python's :mod:`ast` module, which has been unstable betw
:alt: GitHub top language

.. |commits-since| github-shield::
:commits-since: v0.3.0
:commits-since: v0.3.1
:alt: GitHub commits since tagged version

.. |commits-latest| github-shield::
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "astatine"
version = "0.3.0"
version = "0.3.1"
description = "Some handy helper functions for Python's AST module."
readme = "README.rst"
keywords = [ "ast",]
Expand Down
2 changes: 1 addition & 1 deletion repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ copyright_years: '2021'
author: 'Dominic Davis-Foster'
email: 'dominic@davis-foster.co.uk'
username: 'domdfcoding'
version: '0.3.0'
version: '0.3.1'
license: 'MIT'
short_desc: "Some handy helper functions for Python's AST module."

Expand Down

0 comments on commit 3c13f05

Please sign in to comment.