-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversionary.jsonc
More file actions
28 lines (28 loc) · 676 Bytes
/
Copy pathversionary.jsonc
File metadata and controls
28 lines (28 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"$schema": "https://raw.githubusercontent.com/jolars/versionary/main/schemas/config.json",
"version": 1,
"review-mode": "review",
"release-type": [
"python",
"rust"
],
"bump-minor-pre-major": true,
"include-commit-authors": true,
"release-reference-comments": "best-effort",
"packages": {
".": {
"extra-files": [
{
"type": "regex",
"path": "python/eunoia/__init__.py",
"pattern": "__version__\\s*=\\s*\"([^\"]+)\""
},
{
"type": "regex",
"path": "tests/test_smoke.py",
"pattern": "eunoia\\.__version__\\s*==\\s*\"([^\"]+)\""
}
]
}
}
}