Skip to content

Commit b3b0ba4

Browse files
committed
update CHANGELOG and bump version to 4.2.2
(also snuck in a simplification of local pre-commit hooks)
1 parent 2582ad2 commit b3b0ba4

File tree

4 files changed

+12
-13
lines changed

4 files changed

+12
-13
lines changed

.pre-commit-config.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ repos:
1818
hooks:
1919
- id: flake8
2020
exclude: elasticapm\/utils\/wrapt|build|src|tests|dist|conftest.py|setup.py
21-
- repo: https://github.com/elastic/apm-agent-python
22-
rev: 86fca8c04e6d638ed
21+
- repo: local
2322
hooks:
24-
- id: license-header-check
23+
- id: license-header-check
24+
name: License header check
25+
description: Checks the existance of license headers in all Python files
26+
entry: ./tests/scripts/license_headers_check.sh
27+
exclude: "(elasticapm\/utils\/wrapt\/.*|tests\/utils\/stacks\/linenos.py)"
28+
language: script
29+
types: [python]

.pre-commit-hooks.yaml

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

3-
## Unreleased
4-
[Check the diff](https://github.com/elastic/apm-agent-python/compare/v4.2.1...master)
3+
## v4.2.2
4+
[Check the diff](https://github.com/elastic/apm-agent-python/compare/v4.2.1...v4.2.2)
55
* fixed an issue with Celery and the prefork worker pool (#444)
66
* fixed an issue when running uwsgi without a master process (#446)
7+
* fixed an issue with gevent/eventlet on Python 3.7 (#451, #454)
78
* introduced `IntervalTimer` and use it instead of `threading.Timer` (#452)
89
* added license header check as pre-commit hook (#456)
910

elasticapm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3030

31-
__version__ = (4, 2, 1)
31+
__version__ = (4, 2, 2)
3232
VERSION = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)