diff --git a/CHANGELOG.md b/CHANGELOG.md index db8073d..a7d5933 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.0.5 (2022-06-16) +### Fix +* Small performance improvement ([`8d85431`](https://github.com/F-Secure/failures-analysis/commit/8d854313105cc1e10bc54429d4f6c1acaf4749be)) + ## v1.0.4 (2022-06-16) ### Fix * Fix for printing all rows ([`2fd01e3`](https://github.com/F-Secure/failures-analysis/commit/2fd01e3b4c822947b4c2227fdac81d060ce0ca8a)) diff --git a/failure_analysis/__init__.py b/failure_analysis/__init__.py index ad14a2b..359765b 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.4" +__version__ = "1.0.5" diff --git a/pyproject.toml b/pyproject.toml index 4f0a628..78b2f91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "failures-analysis" -version = "1.0.4" +version = "1.0.5" 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"