diff --git a/CHANGELOG.md b/CHANGELOG.md index e997399..f1a90ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.5.0 (2022-12-28) + +### Feat + +- **parser**: Print version of program + ## v1.4.0 (2022-12-27) ### Feat diff --git a/README.rst b/README.rst index 8df13e6..fc3adaf 100644 --- a/README.rst +++ b/README.rst @@ -40,7 +40,7 @@ License `__ :target: https://github.com/marketplace/actions/rst-substitution .. |pre-commit.ci status| image:: https://results.pre-commit.ci/badge/github/junghoon-vans/varst/main.svg :target: https://results.pre-commit.ci/latest/github/junghoon-vans/varst/main -.. |GitHub Workflow Status| image:: https://img.shields.io/github/actions/workflow/status/junghoon-vans/varst/python-publish.yml?branch=v1.2.1 +.. |GitHub Workflow Status| image:: https://img.shields.io/github/actions/workflow/status/junghoon-vans/varst/python-publish.yml?branch=v1.5.0 .. |Documentation Status| image:: https://readthedocs.org/projects/varst/badge/?version=latest :target: https://varst.readthedocs.io/en/latest/?badge=latest diff --git a/pyproject.toml b/pyproject.toml index c370255..c66a20f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "varst" -version = "1.4.0" +version = "1.5.0" description = "Replace substitutions in rst files with variables." authors = ["Jeonghun-Ban "] maintainers = ["Jeonghun-Ban "] @@ -50,7 +50,7 @@ requires = [ [tool] [tool.commitizen] name = "cz_conventional_commits" -version = "1.4.0" +version = "1.5.0" tag_format = "v$version" version_files = [ "varst/__init__.py", diff --git a/varst/__init__.py b/varst/__init__.py index b0d1085..b278419 100644 --- a/varst/__init__.py +++ b/varst/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.4.0' +__version__ = '1.5.0' supported = ('rst', 'restructuredtext', 'rest', 'restx', 'rtxt', 'rstx')