File tree 4 files changed +33
-12
lines changed
4 files changed +33
-12
lines changed Original file line number Diff line number Diff line change
1
+ <a name =" 4.0.0 " ></a >
2
+ ## 4.0.0 (2024-04-29)
3
+
4
+ #### BREAKING CHANGES
5
+
6
+ When `` config.ignore_errors `` is Falsey, failures to parse Pyhton files or
7
+ look up file sources will now interrupt and early exit collection, which
8
+ matches default `` coverage `` behaviour. Previously, we had manually muted
9
+ these errors and/or only errored after collecting multiple failures.
10
+
11
+ #### Features
12
+
13
+ * support `` pyproject.toml `` packages by default (via `` coverage[toml] `` ) ([ 962e2242] ( 962e2242 ) )
14
+ * add `` python-coveralls `` entrypoint ([ 3d8d56e4] ( 3d8d56e4 ) )
15
+
16
+ #### Bug Fixes
17
+
18
+ * fixup default support for Github Actions (#427 , #385 ) ([ 44e95634] ( 44e95634 ) ) -- thanks @andy-maier
19
+ * fail and report on * all* errors, not just those derived from `` CoverallsException `` ([ be446287] ( be446287 ) )
20
+
21
+ #### Internal
22
+
23
+ * support `` coverage `` v7.0 - v7.4 ([ 8fb36645] ( 8fb36645 ) )
24
+ * support Python 3.11 and 3.12 ([ 8dbce919] ( 8dbce919 ) )
25
+ * fixup docs for tox v3 and v4 support (#371 ) ([ 05bb20d8] ( 05bb20d8 ) ) -- thanks @masonf
26
+ * drop support for Python3.7 and below
27
+ * drop support for `` coverage `` v4.x ([ 752f52a0] ( 752f52a0 ) )
28
+ * auto-build and publish `` docker `` images
29
+ * refactor: more closely match `` coverage `` public interface (#421 )
30
+
1
31
<a name =" 3.3.1 " ></a >
2
32
## 3.3.1 (2021-11-11)
3
33
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ Conda should automatically create a PR on their `coveralls-feedstock`_ shortly w
20
20
#. Comment on your own PR with: "@conda-forge-admin, please rerender".
21
21
#. Merge along with the automated commit from Conda.
22
22
23
+ Note that the ``clog `` command comes from ``cargo install clog-cli ``.
24
+
23
25
.. _GitHub release : https://github.com/TheKevJames/coveralls-python/releases/new
24
26
.. _coveralls-feedstock : https://github.com/conda-forge/coveralls-feedstock
25
27
.. _coveralls : https://pypi.org/project/coveralls/
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " coveralls"
3
- version = " 3.4.0a1 "
3
+ version = " 4.0.0 "
4
4
description = " Show coverage stats online via coveralls.io"
5
5
readme = " README.rst"
6
6
You can’t perform that action at this time.
0 commit comments