diff --git a/CHANGELOG.md b/CHANGELOG.md index 87092d4..db8073d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v1.0.4 (2022-06-16) +### Fix +* Fix for printing all rows ([`2fd01e3`](https://github.com/F-Secure/failures-analysis/commit/2fd01e3b4c822947b4c2227fdac81d060ce0ca8a)) +* Further improvent to the timeout issue ([`d4236c5`](https://github.com/F-Secure/failures-analysis/commit/d4236c5e2ac929511d4eaafeb29a15f6f570b2fd)) + ## v1.0.3 (2022-06-07) ### Fix * Remove not used dependecies from pyproject.toml ([`e352da4`](https://github.com/F-Secure/failures-analysis/commit/e352da4b981d3391ce02da901c8665875b95ca06)) diff --git a/failure_analysis/__init__.py b/failure_analysis/__init__.py index 5769cc1..ad14a2b 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.3" +__version__ = "1.0.4" diff --git a/pyproject.toml b/pyproject.toml index d79f8c4..4f0a628 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "failures-analysis" -version = "1.0.3" +version = "1.0.4" 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"