Skip to content

Commit ef2c087

Browse files
committed
fix(release-please): update uv.lock TOML JSONPath
Updates: - Fix the uv.lock TOML JSONPath from @.name to @.name.value, which matches release-please’s tagged TOML parser. - Remove the redundant pyproject.toml extra-files entry. The python release type already updates pyproject.toml. Refs: LINK-2580
1 parent ccf7e25 commit ef2c087

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

release-please-config.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
".": {
66
"release-type": "python",
77
"package-name": "linkedevents",
8-
"extra-files": ["pyproject.toml"],
98
"changelog-sections": [
109
{"type": "feat", "section": "Features"},
1110
{"type": "fix", "section": "Bug Fixes"},
@@ -19,6 +18,13 @@
1918
{"type": "test", "section": "Tests", "hidden": true},
2019
{"type": "build", "section": "Build System", "hidden": true},
2120
{"type": "ci", "section": "Continuous Integration", "hidden": true}
21+
],
22+
"extra-files": [
23+
{
24+
"path": "uv.lock",
25+
"type": "toml",
26+
"jsonpath": "$.package[?(@.name.value=='linkedevents')].version"
27+
}
2228
]
2329
}
2430
},

0 commit comments

Comments
 (0)