diff --git a/CHANGELOG.md b/CHANGELOG.md index dea8451d..2ac93e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### `2.1.5` + +- [#273](https://github.com/codecov/codecov-python/pull/273) Implement retries on Codecov API calls +- [#265](https://github.com/codecov/codecov-python/pull/265) Add GitHub Actions CI detection +- [#267](https://github.com/codecov/codecov-python/pull/267) Add CODECOV_NAME as default for name + ### `2.1.4` - [#260](https://github.com/codecov/codecov-python/pull/260) Enforce black formatting diff --git a/codecov/__version__.py b/codecov/__version__.py index f55a18b0..0ff00ce8 100644 --- a/codecov/__version__.py +++ b/codecov/__version__.py @@ -5,4 +5,4 @@ __license__ = "Apache 2.0" __title__ = "codecov" __url__ = "https://github.com/codecov/codecov-python" -__version__ = "2.1.4" +__version__ = "2.1.5" diff --git a/tests/requirements.txt b/tests/requirements.txt index f70ccf3f..953f4978 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,7 +1,7 @@ coverage>=4.4.0 ddt mock -pytest>=3.6.0 +pytest>=4.6.0 pytest-cov funcsigs requests