diff --git a/CHANGELOG.md b/CHANGELOG.md index a7d5933..90d60d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.1.0 (2022-06-17) +### Feature +* Add possibility to define minimum similarity ([`7bfa099`](https://github.com/F-Secure/failures-analysis/commit/7bfa09933188f35c7fe084a328acfabbc05ff009)) + ## v1.0.5 (2022-06-16) ### Fix * Small performance improvement ([`8d85431`](https://github.com/F-Secure/failures-analysis/commit/8d854313105cc1e10bc54429d4f6c1acaf4749be)) diff --git a/failure_analysis/__init__.py b/failure_analysis/__init__.py index 359765b..f717193 100644 --- a/failure_analysis/__init__.py +++ b/failure_analysis/__init__.py @@ -9,4 +9,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.0.5" +__version__ = "1.1.0" diff --git a/pyproject.toml b/pyproject.toml index 78b2f91..f828c83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "failures-analysis" -version = "1.0.5" +version = "1.1.0" description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation." authors = ["Tatu Aalto"] license = "Apache-2.0"