We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 98380ac + a1c1ee0 commit 06d87a3Copy full SHA for 06d87a3
docs/configuration.md
@@ -37,12 +37,14 @@ stable = "stable-*"
37
release = "v[0-9]*"
38
```
39
40
-It is also possible to define one single tag pattern in the `[tool.polylith]` section.
41
-Note: if both exists, the `[tool.polylith.tag.pattern]` will override.
+By default, Polylith uses the `-committerdate` when fetching tags with the underlying `git` command.
+The sorting might be incorrect when using _annotated tags_. To solve this, you can configure
42
+the sorting.
43
44
+Example, setting a different sorting option than the default:
45
``` toml
-[tool.polylith]
-git_tag_pattern = "stable-*"
46
+[tool.polylith.tag]
47
+sorting = ["-creatordate"]
48
49
50
### Components and bases documentation
0 commit comments