Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mtkennerly committed Feb 12, 2020
1 parent 7869f1c commit 5387f3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v0.5.0 (2020-02-12)

* Added the `format-jinja` option.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ In your pyproject.toml file, you may configure the following options:
* `{{ dirty }}` (boolean)
* `{{ env }}` (dictionary of environment variables)

Example: `{% if distance == 0 %}v{{ base }}{% else %}v{{ base }}+{{ distance }}.{{ commit }}{% endif %}`
Example: `{% if distance == 0 %}{{ base }}{% else %}{{ base }}+{{ distance }}.{{ commit }}{% endif %}`
* `style`: String. Default: unset. One of: `pep440`, `semver`, `pvp`.
These are preconfigured output formats. If you set both a `style` and
`format`, then the format will be validated against the style's rules.
a `format`, then the format will be validated against the style's rules.
If `style` is unset, the default output format will follow PEP 440,
but a custom `format` will only be validated if `style` is set explicitly.
* `latest-tag`: Boolean. Default: false. If true, then only check the latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "poetry-dynamic-versioning"
version = "0.4.0"
version = "0.5.0"
description = "Plugin for Poetry to enable dynamic versioning based on VCS tags"
license = "MIT"
authors = ["Matthew T. Kennerly <mtkennerly@gmail.com>"]
Expand Down

0 comments on commit 5387f3b

Please sign in to comment.