Metadata-Version: 2.1
Name: poetry-plugin-bump
Version: 0.0.6
Summary: poetry plugin to bump version
Home-page: https://github.com/keattang/poetry-exec-plugin
License: MIT
Author: trim21
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: poetry (>=1.2.0,<2.0.0)
Requires-Dist: semver (>=2.13.0,<3.0.0)
Project-URL: Repository, https://github.com/keattang/poetry-exec-plugin
Description-Content-Type: text/markdown

# poetry-plugin-bump

A plugin for poetry to bump version, just like you can in npm.

## Installation

Installation requires poetry 1.2.0+. To install this plugin run:

`poetry self add poetry-plugin-bump`

If your poetry is installed with `pipx`:

```
pipx inject poetry poetry-plugin-bump
```

For other methods of installing plugins see
the [poetry documentation](https://python-poetry.org/docs/master/plugins/#the-plugin-add-command).

## Usage

Configuration is optional, but you can define config in `pyproject.toml`

default config:

```toml
[tool.poetry-plugin-bump]
msg = 'bump: v{version}'
tag_name = 'v{version}'
```

this will define bump commit message and tag name.

## License

MIT licensed, inspired by https://github.com/keattang/poetry-exec-plugin

