File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ # Configuration file for bumpversion GitHub action
2+ # See https://github.com/callowayproject/bump-my-version
3+ [tool .bumpversion ]
4+ current_version = " 1.19.1"
5+ parse = " (?P<major>\\ d+)\\ .(?P<minor>\\ d+)\\ .(?P<patch>\\ d+)"
6+ serialize = [" {major}.{minor}.{patch}" ]
7+ search = " {current_version}"
8+ replace = " {new_version}"
9+ regex = false
10+ ignore_missing_version = false
11+ tag = false
12+ allow_dirty = false
13+ commit = false
14+
15+ [[tool .bumpversion .files ]]
16+ filename = " src/translator.ts"
17+ search = " deepl-node/{current_version}"
18+ replace = " deepl-node/{new_version}"
19+
20+ [[tool .bumpversion .files ]]
21+ filename = " package.json"
22+ search = " \" version\" : \" {current_version}\" "
23+ replace = " \" version\" : \" {new_version}\" "
24+
25+ [[tool .bumpversion .files ]]
26+ filename = " package-lock.json"
27+ search = " \" deepl-node\" ,\n \" version\" : \" {current_version}\" "
28+ replace = " \" deepl-node\" ,\n \" version\" : \" {new_version}\" "
29+
30+ [[tool .bumpversion .files ]]
31+ filename = " package-lock.json"
32+ search = " \" deepl-node\" ,\n \" version\" : \" {current_version}\" "
33+ replace = " \" deepl-node\" ,\n \" version\" : \" {new_version}\" "
You can’t perform that action at this time.
0 commit comments