https://github.com/nullswan/poetry-plugin-sembump
Bump the version of a poetry project dependencies.
https://github.com/nullswan/poetry-plugin-sembump
Last synced: 3 months ago
JSON representation
Bump the version of a poetry project dependencies.
- Host: GitHub
- URL: https://github.com/nullswan/poetry-plugin-sembump
- Owner: nullswan
- Created: 2024-04-08T22:15:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-09T19:17:05.000Z (almost 2 years ago)
- Last Synced: 2026-02-20T17:11:44.180Z (4 months ago)
- Language: Python
- Size: 229 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sembump
Poetry plugin to semantically bump the version of your project.
## Installation
The easiest way to install the export plugin is via the self add command of Poetry.
```
poetry self add poetry-plugin-sembump
```
If you used pipx to install Poetry you can add the plugin via the pipx inject command.
```
pipx inject poetry poetry-plugin-sembump
```
Otherwise, if you used pip to install Poetry you can add the plugin packages via the pip install command.
```
pip install poetry-plugin-sembump
```
## Usage
```
poetry bump -h
Description:
Bump the version of the project dependencies.
Usage:
bump [options]
Options:
-r, --recursive Bump the dependencies of all pyproject.toml files found in subdirectories.
-d, --dry-run Do not write any changes to the files.
-D, --dev-dependencies Update dev dependencies as well.
```