forked from sodadata/soda-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtbump.toml
More file actions
78 lines (59 loc) · 2.05 KB
/
Copy pathtbump.toml
File metadata and controls
78 lines (59 loc) · 2.05 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
77
78
[version]
current = "4.10.0"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.)?((?P<prerelease>[a-z,0-9]+)(?P<build>\d+))?
'''
[git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[file]]
src = "soda-core/src/soda_core/__version__.py"
search = 'SODA_CORE_VERSION = "{current_version}"'
[[file]]
src = "pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-core/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-postgres/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-snowflake/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-databricks/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-tests/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-duckdb/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-bigquery/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-sqlserver/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-synapse/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-fabric/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-athena/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-redshift/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-sparkdf/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[file]]
src = "soda-trino/pyproject.toml"
search = 'version = "{current_version}"|soda-.*=={current_version}'
[[before_commit]]
name = "Update uv lock file"
cmd = "uv lock"