Skip to content

Commit

Permalink
Bump version v0.2.0 -> v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 22, 2021
1 parent ed61f65 commit d064e5e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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.2.0
current_version = 0.3.0
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.2.0
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/astatine/v0.3.0
: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.2.0"
__version__ = "0.3.0"
repo_root = pathlib.Path(__file__).parent
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
extras_require = {}
4 changes: 2 additions & 2 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.2.0"
__version__: str = "0.3.0"
__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.2.0
.. versionadded:: 0.3.0
:param node:
:param posarg_names: Either a list of positional argument names for the function, or the function object.
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.2.0
:commits-since: v0.3.0
: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 = "whey"

[project]
name = "astatine"
version = "0.2.0"
version = "0.3.0"
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.2.0'
version: '0.3.0'
license: 'MIT'
short_desc: "Some handy helper functions for Python's AST module."

Expand Down

0 comments on commit d064e5e

Please sign in to comment.