File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
tests/integration/tests/py-only/version Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.0.20
2+ current_version = 0.0.21
33commit = True
44tag = True
55
66[bumpversion:file:pyproject.toml]
77search = version = " {current_version}"
88replace = version = " {new_version}"
99
10- [bumpversion:file:filecheck/FileCheck .py]
11- search = __version__ = ' {current_version}'
12- replace = __version__ = ' {new_version}'
10+ [bumpversion:file:filecheck/filecheck .py]
11+ search = __version__ = " {current_version}"
12+ replace = __version__ = " {new_version}"
1313
1414[bumpversion:file:tests/integration/tests/py-only/version/sample.itest]
1515search = Version: {current_version}
Original file line number Diff line number Diff line change 99from difflib import SequenceMatcher
1010from enum import Enum
1111
12- __version__ = "0.0.20 "
12+ __version__ = "0.0.21 "
1313
1414from typing import Optional , List , Iterable
1515
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " filecheck"
3- version = " 0.0.20 "
3+ version = " 0.0.21 "
44description = " Python port of LLVM's FileCheck, flexible pattern matching file verifier"
55authors = [" Stanislav Pankevich <s.pankevich@gmail.com>" ]
66
Original file line number Diff line number Diff line change 11RUN: %FILECHECK_EXEC --version | %FILECHECK_TESTER_EXEC %s --match-full-lines
22CHECK: {{^.*}}FileCheck{{(\.py)?$}}
3- CHECK: Version: 0.0.20
3+ CHECK: Version: 0.0.21
44CHECK-EMPTY:
You can’t perform that action at this time.
0 commit comments