forked from prefix-dev/pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tbump.toml
82 lines (66 loc) · 1.82 KB
/
tbump.toml
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
77
78
79
80
81
82
github_url = "https://github.com/prefix-dev/pixi"
[version]
current = "0.35.0"
# 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: 0.35.0 → {new_version}"
tag_template = "v{new_version}"
# For each file to patch, add a [[file]] config
# section containing the path of the file, relative to the
# tbump.toml location.
[[file]]
src = "tbump.toml"
# Restrict search to make it explicit why tbump.toml
# is even included as a file to bump, as it will get
# its version.current attribute bumped anyway.
search = "Bump version: {current_version} → "
[[file]]
src = "CITATION.cff"
[[file]]
search = '^version = "{current_version}"'
src = "Cargo.toml"
[[file]]
search = "pixi-version: v{current_version}"
src = "docs/advanced/github_actions.md"
[[file]]
search = "FROM ghcr.io/prefix-dev/pixi:{current_version} AS build"
src = "docs/advanced/production_deployment.md"
[[file]]
search = "ARG PIXI_VERSION=v{current_version}"
src = "docs/ide_integration/devcontainer.md"
[[file]]
search = "/pixi.sh/v{current_version}/"
src = "schema/schema.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 = "\"pixi_version\": \"{current_version}\","
src = "docs/features/environment.md"
[[field]]
# the name of the field
name = "candidate"
# the default value to use, if there is no match
default = ""