Skip to content

Commit 8435ee7

Browse files
authored
Merge pull request #8 from Secrus/relase-0.4.0
Release 0.4.0
2 parents b17e3ef + b491142 commit 8435ee7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
6262

6363
- name: Ensure cache is healthy
64-
if: steps.cache.outputs.cache-hit == 'true'
65-
run: imeout 10s poetry run pip --version || rm -rf .venv
64+
if: steps.cache.outputs.cache-hit == 'true' && matrix.os != 'MacOS'
65+
run: timeout 10s poetry run pip --version || rm -rf .venv
6666

6767
- name: Install dependencies
6868
shell: bash

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Crashtest
22

3-
[![Tests](https://github.com/sdispater/crashtest/actions/workflows/tests.yml/badge.svg)](https://github.com/sdispater/crashtest/actions/workflows/tests.yml)
3+
[![Tests](https://github.com/sdispater/crashtest/actions/workflows/main.yml/badge.svg)](https://github.com/sdispater/crashtest/actions/workflows/main.yml)
44
[![PyPI version](https://img.shields.io/pypi/v/crashtest)](https://pypi.org/project/crashtest/)
55

66
Crashtest is a Python library that makes exceptions handling and inspection easier.

crashtest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import annotations
22

33

4-
__version__ = "0.3.1"
4+
__version__ = "0.4.0"

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 = "crashtest"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
description = "Manage Python errors with ease"
55
authors = ["Sébastien Eustace <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)