-
Notifications
You must be signed in to change notification settings - Fork 497
Expand file tree
/
Copy pathtbump.toml
More file actions
76 lines (60 loc) · 1.54 KB
/
tbump.toml
File metadata and controls
76 lines (60 loc) · 1.54 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
github_url = "https://github.com/prefix-dev/pixi"
[version]
current = "0.67.2"
# Example of a semver regexp.
# Make sure this matches current_version before
# using tbump
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(rc
(?P<candidate>\d+)
)?
'''
[git]
# The current version will get updated when tbump is run
message_template = "Bump version: {new_version}"
tag_template = "v{new_version}"
[[file]]
src = "CITATION.cff"
[[file]]
search = '^version = "{current_version}"'
src = "crates/pixi/Cargo.toml"
[[file]]
search = "pixi-version: v{current_version}"
src = "docs/integration/ci/github_actions.md"
[[file]]
search = "ARG PIXI_VERSION=v{current_version}"
src = "docs/integration/editor/vscode.md"
[[file]]
search = "/pixi.sh/v{current_version}/"
src = "schema/schema.json"
[[file]]
search = "/pixi.sh/v{current_version}/"
src = "schema/pyproject/schema.json"
[[file]]
search = "Generated from `pixi` v{current_version}"
src = "schema/pyproject/partial-pixi.json"
[[file]]
search = "Version: v{current_version}"
src = "install/install.sh"
[[file]]
search = "Version: v{current_version}"
src = "install/install.ps1"
[[file]]
search = "PIXI_VERSION = \"{current_version}\""
src = "tests/integration_python/common.py"
[[file]]
search = "None => \"{current_version}\","
src = "crates/pixi_consts/src/consts.rs"
[[file]]
search = "ghcr.io/prefix-dev/pixi:{current_version}"
src = "docs/deployment/container.md"
[[field]]
# the name of the field
name = "candidate"
# the default value to use, if there is no match
default = ""