Skip to content

Commit 544c093

Browse files
committed
Bump version v0.2.3 -> v0.3.0
1 parent 4b92c2b commit 544c093

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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.2.3
2+
current_version = 0.3.0
33
commit = True
44
tag = True
55

.github/workflows/conda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: "Install package"
5050
run: |
51-
$CONDA/bin/conda install -c file://$(pwd)/conda-bld pyproject-parser=0.2.3=py_1 -y || exit 1
51+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld pyproject-parser=0.3.0=py_1 -y || exit 1
5252
5353
- name: "Run Tests"
5454
run: |

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pyproject-parser
101101
.. |language| image:: https://img.shields.io/github/languages/top/repo-helper/pyproject-parser
102102
:alt: GitHub top language
103103

104-
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/pyproject-parser/v0.2.3
104+
.. |commits-since| image:: https://img.shields.io/github/commits-since/repo-helper/pyproject-parser/v0.3.0
105105
:target: https://github.com/repo-helper/pyproject-parser/pulse
106106
:alt: GitHub commits since tagged version
107107

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"extras_require",
1717
]
1818

19-
__version__ = "0.2.3"
19+
__version__ = "0.3.0"
2020
extras_require = {
2121
"readme": ["docutils==0.16", "readme-renderer[md]>=27.0"],
2222
"cli": ["click>=7.1.2", "consolekit>=1.2.0"],

doc-source/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ To do so, add the following to your
5050
`.pre-commit-config.yaml <https://pre-commit.com/#2-add-a-pre-commit-configuration>`_ file:
5151

5252
.. pre-commit::
53-
:rev: 0.2.3
53+
:rev: 0.3.0
5454
:hooks: check-pyproject,reformat-pyproject

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pyproject-parser
106106
:alt: GitHub top language
107107

108108
.. |commits-since| github-shield::
109-
:commits-since: v0.2.3
109+
:commits-since: v0.3.0
110110
:alt: GitHub commits since tagged version
111111

112112
.. |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 = "pyproject-parser"
7-
version = "0.2.3"
7+
version = "0.3.0"
88
description = "Parser for 'pyproject.toml'"
99
readme = "README.rst"
1010
keywords = [ "metadata", "packaging", "pep518", "pep621", "pyproject", "toml",]

pyproject_parser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
__author__: str = "Dominic Davis-Foster"
5454
__copyright__: str = "2021 Dominic Davis-Foster"
5555
__license__: str = "MIT License"
56-
__version__: str = "0.2.3"
56+
__version__: str = "0.3.0"
5757
__email__: str = "[email protected]"
5858

5959
__all__ = ["PyProject", "PyProjectTomlEncoder", "_PP"]

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ email: '[email protected]'
77
username: 'repo-helper'
88
assignee: 'domdfcoding'
99
primary_conda_channel: "domdfcoding"
10-
version: '0.2.3'
10+
version: '0.3.0'
1111
license: 'MIT'
1212
short_desc: "Parser for 'pyproject.toml'"
1313

setup.cfg

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

99
[metadata]
1010
name = pyproject-parser
11-
version = 0.2.3
11+
version = 0.3.0
1212
author = Dominic Davis-Foster
1313
author_email = [email protected]
1414
license = MIT License

0 commit comments

Comments
 (0)