Skip to content

Commit af46bb8

Browse files
authored
Merge pull request #184 from mull-project/bump-version
Bump version: 0.0.20 → 0.0.21
2 parents 8f00c71 + 24b99ae commit af46bb8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[bumpversion]
2-
current_version = 0.0.20
2+
current_version = 0.0.21
33
commit = True
44
tag = True
55

66
[bumpversion:file:pyproject.toml]
77
search = version = "{current_version}"
88
replace = 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]
1515
search = Version: {current_version}

filecheck/filecheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from difflib import SequenceMatcher
1010
from enum import Enum
1111

12-
__version__ = "0.0.20"
12+
__version__ = "0.0.21"
1313

1414
from typing import Optional, List, Iterable
1515

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "filecheck"
3-
version = "0.0.20"
3+
version = "0.0.21"
44
description = "Python port of LLVM's FileCheck, flexible pattern matching file verifier"
55
authors = ["Stanislav Pankevich <s.pankevich@gmail.com>"]
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
RUN: %FILECHECK_EXEC --version | %FILECHECK_TESTER_EXEC %s --match-full-lines
22
CHECK: {{^.*}}FileCheck{{(\.py)?$}}
3-
CHECK: Version: 0.0.20
3+
CHECK: Version: 0.0.21
44
CHECK-EMPTY:

0 commit comments

Comments
 (0)