Skip to content

Commit c74be53

Browse files
author
semantic-release
committed
2.0.0
Automatically generated by python-semantic-release
1 parent 8a47a97 commit c74be53

File tree

3 files changed

+69
-62
lines changed

3 files changed

+69
-62
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
<!--next-version-placeholder-->
44

5+
## v2.0.0 (2022-06-17)
6+
### Feature
7+
* Use Drain3 to template failure messages ([`efe9538`](https://github.com/F-Secure/failures-analysis/commit/efe9538f8131d918ab88230737d811907af045cc))
8+
9+
### Breaking
10+
* FIll use by default Drain3 to template error messages ([`efe9538`](https://github.com/F-Secure/failures-analysis/commit/efe9538f8131d918ab88230737d811907af045cc))
11+
512
## v1.1.0 (2022-06-17)
613
### Feature
714
* Add possibility to define minimum similarity ([`7bfa099`](https://github.com/F-Secure/failures-analysis/commit/7bfa09933188f35c7fe084a328acfabbc05ff009))

failure_analysis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
12-
__version__ = "1.1.0"
12+
__version__ = "2.0.0"

pyproject.toml

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,61 @@
1-
[tool.poetry]
2-
name = "failures-analysis"
3-
version = "1.1.0"
4-
description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation."
5-
authors = ["Tatu Aalto"]
6-
license = "Apache-2.0"
7-
readme = "README.md"
8-
homepage = "https://github.com/F-Secure/failures-analysis"
9-
classifiers = [
10-
"Development Status :: 3 - Alpha",
11-
"Programming Language :: Python :: 3",
12-
"Programming Language :: Python :: 3.8",
13-
"Programming Language :: Python :: 3.9",
14-
"Programming Language :: Python :: 3.10",
15-
"License :: OSI Approved :: Apache Software License",
16-
"Operating System :: OS Independent",
17-
"Topic :: Software Development :: Testing",
18-
]
19-
packages = [
20-
{ include = "failure_analysis", from="."}
21-
]
22-
23-
[tool.poetry.scripts]
24-
failures-analysis = "failure_analysis.failure_analysis:main"
25-
26-
[tool.poetry.urls]
27-
"Change log" = "https://github.com/F-Secure/failures-analysis/blob/main/CHANGELOG.md"
28-
29-
[tool.poetry.dependencies]
30-
python = "^3.8"
31-
numpy = "^1.22.4"
32-
pandas = "^1.4.2"
33-
sklearn = "^0.0"
34-
lxml = "^4.9.0"
35-
drain3 = "^0.9.10"
36-
37-
[tool.poetry.dev-dependencies]
38-
pytest = "^7.1.2"
39-
black = "^22.3.0"
40-
isort = "^5.10.1"
41-
invoke = "^1.7.1"
42-
mypy = "^0.961"
43-
flake8 = "^4.0.1"
44-
python-semantic-release = "7.28.1"
45-
approvaltests = "^5.2.0"
46-
47-
[build-system]
48-
requires = ["poetry-core>=1.0.0"]
49-
build-backend = "poetry.core.masonry.api"
50-
51-
[tool.black]
52-
line-length = 120
53-
target-version = ['py38']
54-
55-
[tool.semantic_release]
56-
version_toml = [
57-
"pyproject.toml:tool.poetry.version",
58-
"failure_analysis/__init__.py:__version__"
59-
]
60-
branch = "main"
61-
build_command = "poetry build"
1+
[tool.poetry]
2+
name = "failures-analysis"
3+
version = "2.0.0"
4+
description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation."
5+
authors = ["Tatu Aalto"]
6+
license = "Apache-2.0"
7+
readme = "README.md"
8+
homepage = "https://github.com/F-Secure/failures-analysis"
9+
classifiers = [
10+
"Development Status :: 3 - Alpha",
11+
"Programming Language :: Python :: 3",
12+
"Programming Language :: Python :: 3.8",
13+
"Programming Language :: Python :: 3.9",
14+
"Programming Language :: Python :: 3.10",
15+
"License :: OSI Approved :: Apache Software License",
16+
"Operating System :: OS Independent",
17+
"Topic :: Software Development :: Testing",
18+
]
19+
packages = [
20+
{ include = "failure_analysis", from="."}
21+
]
22+
23+
[tool.poetry.scripts]
24+
failures-analysis = "failure_analysis.failure_analysis:main"
25+
26+
[tool.poetry.urls]
27+
"Change log" = "https://github.com/F-Secure/failures-analysis/blob/main/CHANGELOG.md"
28+
29+
[tool.poetry.dependencies]
30+
python = "^3.8"
31+
numpy = "^1.22.4"
32+
pandas = "^1.4.2"
33+
sklearn = "^0.0"
34+
lxml = "^4.9.0"
35+
drain3 = "^0.9.10"
36+
37+
[tool.poetry.dev-dependencies]
38+
pytest = "^7.1.2"
39+
black = "^22.3.0"
40+
isort = "^5.10.1"
41+
invoke = "^1.7.1"
42+
mypy = "^0.961"
43+
flake8 = "^4.0.1"
44+
python-semantic-release = "7.28.1"
45+
approvaltests = "^5.2.0"
46+
47+
[build-system]
48+
requires = ["poetry-core>=1.0.0"]
49+
build-backend = "poetry.core.masonry.api"
50+
51+
[tool.black]
52+
line-length = 120
53+
target-version = ['py38']
54+
55+
[tool.semantic_release]
56+
version_toml = [
57+
"pyproject.toml:tool.poetry.version",
58+
"failure_analysis/__init__.py:__version__"
59+
]
60+
branch = "main"
61+
build_command = "poetry build"

0 commit comments

Comments
 (0)