diff --git a/README.md b/README.md index a11ab36..783c990 100644 --- a/README.md +++ b/README.md @@ -613,21 +613,22 @@ final [url_calver_org_scheme]: https://calver.org/#scheme -| part | range / example(s) | info | -|---------|---------------------------|--------------------------------------------| -| `MAJOR` | 0..9, 10..99, 100.. | `bumpver update --major` | -| `MINOR` | 0..9, 10..99, 100.. | `bumpver update --minor` | -| `PATCH` | 0..9, 10..99, 100.. | `bumpver update --patch` | -| `TAG` | alpha, beta, rc, post | `--tag=` | -| `PYTAG` | a, b, rc, post | `--tag=` | -| `NUM` | 0, 1, 2... | `-r/--tag-num` | -| `YYYY` | 2019, 2020... | Full year, based on `strftime('%Y')` | -| `YY` | 18, 19..99, 0, 1 | Short year, based on `int(strftime('%y'))` | -| `MM` | 9, 10, 11, 12 | Month, based on `int(strftime('%m'))` | -| `DD` | 1, 2, 3..31 | Day, based on `int(strftime('%d'))` | -| `BUILD` | 1001, 1002 .. 1999, 22000 | build number (maintains lexical order) | -| `INC0` | 0, 1, 2... | 0-based auto incrementing number | -| `INC1` | 1, 2... | 1-based auto incrementing number | +| part | range / example(s) | info | +|------------|---------------------------|---------------------------------------------| +| `MAJOR` | 0..9, 10..99, 100.. | `bumpver update --major` | +| `MINOR` | 0..9, 10..99, 100.. | `bumpver update --minor` | +| `PATCH` | 0..9, 10..99, 100.. | `bumpver update --patch` | +| `TAG` | alpha, beta, rc, post | `--tag=` | +| `PYTAG` | a, b, rc, post | `--tag=` | +| `NUM` | 0, 1, 2... | `-r/--tag-num` | +| `YYYY` | 2019, 2020... | Full year, based on `strftime('%Y')` | +| `YY` | 18, 19..99, 0, 1 | Short year, based on `int(strftime('%y'))` | +| `MM` | 9, 10, 11, 12 | Month, based on `int(strftime('%m'))` | +| `DD` | 1, 2, 3..31 | Day, based on `int(strftime('%d'))` | +| `BUILD` | 1001, 1002 .. 1999, 22000 | build number (maintains lexical order) | +| `INC0` | 0, 1, 2... | 0-based auto incrementing number | +| `INC1` | 1, 2... | 1-based auto incrementing number | +| `PYTAGNUM` | a0, a1, rc0, ... | `PYTAG` + `NUM` (no white-space in between) | The following are also available, but you should review the [Normalization Caveats](#normalization-caveats) before you decide to use them.